Skip to content

Commit 856f635

Browse files
authored
Create multiplicationtable.java
1 parent a91d9f9 commit 856f635

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

multiplicationtable.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)