We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70dee26 commit 91e9f2dCopy full SHA for 91e9f2d
3.Variables_and_data_types/Total.java
@@ -0,0 +1,10 @@
1
+public class Total {
2
+ public static void main(String args[]) {
3
+ int x=10;
4
+ int y=25;
5
+ int z=63;
6
+ int sum=x+y+z;
7
+
8
+ System.out.println("Sum of x+y+z = " + sum);
9
+ }
10
+}
0 commit comments