Skip to content

Instantly share code, notes, and snippets.

@User0111
Last active January 15, 2017 00:52
Show Gist options
  • Save User0111/4d3aff4fc4ab3c23843d148ca4c35b91 to your computer and use it in GitHub Desktop.
Save User0111/4d3aff4fc4ab3c23843d148ca4c35b91 to your computer and use it in GitHub Desktop.
package com.company;
public class Main {
public static void main(String args[]){
int i, j, a=0;
for(i = 1; i < 10; i++){
for(j = 1; j < 10; j++) {
a = i*j;
System.out.print(a+" ");
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment