Skip to content

Instantly share code, notes, and snippets.

@FreeFly19
Forked from greensma/Ex6.java
Last active October 23, 2016 22:19
Show Gist options
  • Save FreeFly19/bd1938d2c1bc7291a98c16db437d04ef to your computer and use it in GitHub Desktop.
Save FreeFly19/bd1938d2c1bc7291a98c16db437d04ef 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 + "\t");
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment