Skip to content

Instantly share code, notes, and snippets.

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