Skip to content

Instantly share code, notes, and snippets.

@thetekst
Created February 18, 2011 13:50
Show Gist options
  • Save thetekst/833671 to your computer and use it in GitHub Desktop.
Save thetekst/833671 to your computer and use it in GitHub Desktop.
MultiplicationTable
public class MultiplicationTable {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("Таблица умножения\n");
for(int i = 1; i < 10; i++){
for(int k = 1; k < 10; k++){
System.out.println(i + " * " + k + " = " + i * k);
}
System.out.println("----------");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment