Skip to content

Commit ec69466

Browse files
authored
multiplication
1 parent 7c6c29f commit ec69466

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Multiplication.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Multiplication
2+
{
3+
public static void main(String[] args)
4+
{
5+
int num1 = 20, num2 = 20, pro = 0;
6+
System.out.println("num1 = " + num1);
7+
System.out.println("num2 = " + num2);
8+
pro = num1 / num2;
9+
System.out.println("The product = " + pro);
10+
}
11+
}
12+

0 commit comments

Comments
 (0)