Write a program that prompts the user to enter 5 integer


Write a program that prompts the user to enter 5 integer numbers. Once the user enters the 5 numbers, the program must determine and output the average, the largest, and smallest number.

Use the lecture slides and the examples in class as a guide to complete this assignment. Use the Scanner class shown in class to get user input from the terminal window.

You must define the methods listed below in your program. Make sure to keep the keyword "static" when you define the methods (we will learn later what static means). Call these methods from the "main" to get the job done.

static float getAverage(int[] data)

{
// put your implementation here
}
static int getLargest(int[] data)

{
// put your implementation here
}
static int getSmallest(int[] data)
{
// put your implementation here
}

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Write a program that prompts the user to enter 5 integer
Reference No:- TGS02374467

Now Priced at $20 (50% Discount)

Recommended (95%)

Rated (4.7/5)