Question: Create a new Java class called: Average Write a program that gets 10 numbers from the user, computes their average, and finds out how many

 Create a new Java class called: Average Write a program that

Create a new Java class called: Average Write a program that gets 10 numbers from the user, computes their average, and finds out how many numbers are above the average Your program should begin by getting the 10 numbers from the user After you have read all of the numbers, then compute the average of the numbers. Print the average to the screen your output should be formatted to show exactly one decimal place Next, display to the screen the count of numbers that are above the average Finally, display the numbers which are above the average Make sure your output is gramatically correct. (i.e. There are 5 numbers... There is 1 number..) The following is an example of what your MIGHT see on the screen when your program runs. The exact output depends on what values that the user types in while the program runs. The user's inputted values are shown below in italics nter 10 integers 20 18 90 67 83 The average of your numbers is: 48. There are 5 umbers above the average Those numbers are 90 67 23 Technical Notes & Hints: You MUST use an array to solve this problem. You will not receive credit for this problem if you do not use an array in your solution Declare and use a class-scoped constant named MAXSIZE. Use this constant in your program rather than putting the number 10 throughout your code

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!