Skip to content

Instantly share code, notes, and snippets.

@olegrewko
Created May 2, 2020 10:44
Show Gist options
  • Save olegrewko/1f32d5ccbbd872ef1a2f11e3f47dfadc to your computer and use it in GitHub Desktop.
Save olegrewko/1f32d5ccbbd872ef1a2f11e3f47dfadc to your computer and use it in GitHub Desktop.
Таблица умножения по памяти
package IgorDolgov;
public class TableB003 {
public static void main (String[] args) {
for (int k = 0; k < 2; k++) {
for (int j = 1; j < 10; j++) {
for (int i = 1; i < 10; i++) {
System.out.printf("%5d", i * j);
}
System.out.println();
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment