Skip to content

Commit 264d340

Browse files
author
codehouseindia
authored
Merge pull request codehouseindia#67 from mack12/patch-1
Create Programprinttable
2 parents 67b5290 + a9dd0a5 commit 264d340

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Programprinttable

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# https://m.facebook.com/story.php?story_fbid=3391781437581607&id=100002493516632
2+
3+
# Subscribed by Code house
4+
5+
6+
public class MultiplicationTable {
7+
public static void main(String[] args) {
8+
int num = 5;
9+
10+
for(int i = 1; i <= 10; ++i)
11+
{
12+
System.out.printf("%d * %d = %d \n", num, i, num * i);
13+
} } }

0 commit comments

Comments
 (0)