Skip to content

Instantly share code, notes, and snippets.

@FreeFly19
Forked from User0111/homeWork2(6*)
Last active January 15, 2017 00:53
Show Gist options
  • Save FreeFly19/f00cbf89fbae231f62ea545042810ea8 to your computer and use it in GitHub Desktop.
Save FreeFly19/f00cbf89fbae231f62ea545042810ea8 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