Computer Science, asked by umeshmehar682, 1 month ago

Write a program in java to input 3 integers and find their sum if last digit numbers​

Answers

Answered by bakrihullisantosh
0

import java.util.Scanner;

public class AdditionOfthreeNumbers {

public static void main(String[] args)

{

int i,n=0,s=0;

double avg;

{

System.out.println("Input the 3 numbers : ");

}

for (i=0;i<3;i++)

{

Scanner in = new Scanner(System.in);

n = in.nextInt();

s +=n;

}

avg=s/3;

System.out.println("The sum of 3 no is : " +s+"\nThe Average is : " +avg);

}

}

Similar questions