Skip to content

Commit 6313ce5

Browse files
committed
implement solution
1 parent 0fced0c commit 6313ce5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Exercise.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
public class Exercise {
22

33
public static void main(String[] args) {
4-
// implement exercise here
4+
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+
}
59
}
610
}

0 commit comments

Comments
 (0)