We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fced0c commit 6313ce5Copy full SHA for 6313ce5
Exercise.java
@@ -1,6 +1,10 @@
1
public class Exercise {
2
3
public static void main(String[] args) {
4
- // implement exercise here
+ for (int i = 1; i <= 10; i++) {
5
+ for (int j = 1; j <= 10; j++) {
6
+ System.out.println(i + " x " + j + " = " + (i * j));
7
+ }
8
9
}
10
0 commit comments