Computer Science, asked by hasikacilagani, 1 day ago

public class Addition public static void main(String args[]) int a = 3; int b = 4; int c = 2; int d = 5: int e = 8; int sum = System.out.println("Sum of 5 numbers is "sum);​

Answers

Answered by vedantkapruwan12
0

Answer:

public class Addition

{        

      public static void main(String args[])

{

       int a = 3;

       int b = 4;

       int c = 2;

       int d = 5;

       int e = 8;

       int sum;

       System.out.println("The sum of 5 number = "+(a+b+c+d+e));

}

}

Similar questions