Skip to content

Instantly share code, notes, and snippets.

@greensma
Last active October 24, 2016 14:54
Show Gist options
  • Save greensma/65238cfb09ee2b5bdad36b23b89e17ca to your computer and use it in GitHub Desktop.
Save greensma/65238cfb09ee2b5bdad36b23b89e17ca to your computer and use it in GitHub Desktop.
Home work #2
public class Ex6 {
public static void main(String... args){
for(int i = 1; i < 10; i++){
for(int k = 1; k < 10; k++){
System.out.print(k * i + " ");
}
System.out.println("");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment