Skip to content

Commit b9a3f49

Browse files
authored
Merge pull request mayankgb2#21 from aditi-disaster/patch-2
Create Sum of three numbers
2 parents e55deb9 + d212d50 commit b9a3f49

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)