Computer Science, asked by mae13, 1 year ago

write a program to find the sum and average of three numbers

Answers

Answered by ItzMeSam35
10

import java.util.Scanner;

public class Sum_Average

{

public static void main (String args [])

{

Scanner sc=new Scanner (System.in);

System.out.println("Please enter the first value : ");

double a = sc.nextDouble();

System.out.println("Please enter the second value : ");

double b = sc.nextDouble();

System.out.println("Please enter the third value : ");

double c = sc.nextDouble();

double sum = a + b + c ;

double average = sum/3;

System.out.println("Sum : "+sum);

System.out.println("Average : "+average);

sc.close();

}

}

Answered by Shivu516
1

This program is in Java.  

import java.util.*;

public class AverageCalculator {

   public static void main (String [] args) {

       //Taking input from the user

       Scanner sc = new Scanner(System.in);

       System.out.print("Enter the first number: ");

       double num1 = sc.nextDouble();

       System.out.print("Enter the second number: ");

       double num2 = sc.nextDouble();

       System.out.print("Enter the third number: ");

       double num3 = sc.nextDouble();

       //Main part comes here

       double Average = (num1 + num2 + num3) / 3;

       double sum = num1 + num2 + num3;

       System.out.println("The sum of the following numbers is " + sum);

       System.out.println("The average of the given numbers is " + Average);

   }

}

Output:

Enter the first number: 30

Enter the second number: 31

Enter the third number: 28

The sum of the following numbers is 89.0

The average of the given numbers is 29.666666666666668

Similar questions