Skip to content

Instantly share code, notes, and snippets.

@elizmcdnld
Created February 25, 2017 09:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elizmcdnld/75f6acff83ac8d0a4c7acb3c1fc46109 to your computer and use it in GitHub Desktop.
Save elizmcdnld/75f6acff83ac8d0a4c7acb3c1fc46109 to your computer and use it in GitHub Desktop.
Ch.1- Ex. 1.4
public class ex1point4 {
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("6 16 64");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment