21 lines
508 B
Java
21 lines
508 B
Java
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @author caleb
|
|
*/
|
|
public class Exercise01_04 {
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
System.out.println("a a^2 a^3");
|
|
System.out.println("1 1 1");
|
|
System.out.println("2 4 8");
|
|
System.out.println("3 9 27");
|
|
System.out.println("4 16 64");
|
|
}
|
|
}
|