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 a91d9f9 commit 856f635Copy full SHA for 856f635
1 file changed
multiplicationtable.java
@@ -0,0 +1,11 @@
1
+public class multiplicationtable {
2
+
3
+ public static void main(String[] args) {
4
5
+ int num = 5;
6
+ for(int i = 1; i <= 10; ++i)
7
+ {
8
+ System.out.printf("%d * %d = %d \n", num, i, num * i);
9
+ }
10
11
+}
0 commit comments