Skip to content

Commit d212d50

Browse files
Create Sum of three numbers
1 parent 5c9a9b2 commit d212d50

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Sum of three numbers

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package com.company;
2+
public class Main {
3+
public static void main(String[] args)
4+
{
5+
System.out.println("The sum of these numbers is: ");
6+
int a= 10;
7+
int b=33;
8+
int c=77;
9+
int sum=a+b+c;
10+
System.out.println("sum");
11+
}
12+
}

0 commit comments

Comments
 (0)