Computer Science, asked by anirudhgupta7g, 6 hours ago

Write a program in java to print the average of 20, 30 and 10.​

Answers

Answered by chetanpawaw2000
0

Answer:

so I don't think that your goal

Answered by llDashinGLoverll
1

import java.util.Scanner;

public class Exercise12 {

public static void main(String[] args) {

Scanner in = new Scanner(System.in);

System.out.print("Input first number: ");

int num1 = in.nextInt();

System.out.print("Input second number: ");

int num2 = in.nextInt();

System.out.print("Input third number: ");

int num3 = in.nextInt();

System.out.print("Input fourth number: ");

int num4 = in.nextInt();

System.out.print("Enter fifth number: ");

int num5 = in.nextInt();

System.out.println("Average of five numbers is: " +

(num1 + num2 + num3 + num4 + num5) / 5);

}

}

Similar questions