Create using netbeans a complete java program called


Assignment

Create, using NetBeans, a complete Java program called CalcAvgDropLowest according to the following guidelines.

The program prompts the user for five to ten numbers all on one line, separated by spaces,calculates the average of all those numbers except the lowest n numbers, where n is given by the user, and displays all the numbers and the calculated average to the user.

The program uses methods to:
get the numbers used to calculate the average;
get the number of lowest numbers to drop before calculating the average
calculate the average of the numbers (except the lowest n numbers) entered by the user; and
print the results.

The first method should take no arguments and return an array of doubles.
The second method should take no arguments and return a single integer, the number of the lowest numbers to drop before calculating the average.

The third method should take an array of doubles (the return value of the first method above) and a single integer value (the number of lowest items to drop before calculating the average) and return a double (the average of all the numbers except the lowest n values).
The fourth method should take an array of doubles, an integer, and a double as arguments but have no return value.

For example:
If the user gives these numbers for calculating the average:
40 60 80 100 20
and the user gives the number 2 to indicate how many of the lowest values should be dropped before calculating the average, then
the program should give as output:
Given the numbers 40.00, 60.00, 80.00, 100.00, and 20.00, the average of all the numbers except the lowest 2 numbers is 80.00.

Thoughts
Consider importing java.util.Arrays and using the sort method on your array of numbers.

Solution Preview :

Prepared by a verified Expert
JAVA Programming: Create using netbeans a complete java program called
Reference No:- TGS02394841

Now Priced at $15 (50% Discount)

Recommended (99%)

Rated (4.3/5)