Question: Write a program with an array that is initialized with following test data: 2 6 , 8 5 , 2 5 , 9 4 ,
Write a program with an array that is initialized with following test data: Use any primitive data type of your choice. The program should also have the following methods: getTotal. This method should accept a onedimensional array as its argument and return the total of the values in the array. getAverage. This method should accept a onedimensional array as its argument and return the average of the values in the array. getHighest. This method should accept a onedimensional array as its argument and return the highest value in the array. getLowest. This method should accept a onedimensional array as its argument and return the lowest value in the array. Demonstrate each of the methods in the program and the program should display the Total, Average, Highest and the Lowest value. Two decimal places for the average hints: cast int to double to calculate the average of integers
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
