filmov
tv
7.11 ArraysOperations Class | Starting Out With Java

Показать описание
#java #startingOutWithJava
Here is the source code for this programming challenge:
Solved: ArrayOperations Class
Write a class name ArrayOperations with the following static methods:
1) getTotal. This method should accept a one-dimensional array as its argument and return the total of the values in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
2) getAverage. This method should accept a one-dimensional array as its argument and return the average of the values in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
3) getHighest. This method should accept a one-dimensional array as its argument and return the highest value in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
4) getLowest. This method should accept a one-dimensional array as its argument and return the lowest value in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
Demonstrate the class in a complete program with test data stored in arrays of various data types.
Here is the source code for this programming challenge:
Solved: ArrayOperations Class
Write a class name ArrayOperations with the following static methods:
1) getTotal. This method should accept a one-dimensional array as its argument and return the total of the values in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
2) getAverage. This method should accept a one-dimensional array as its argument and return the average of the values in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
3) getHighest. This method should accept a one-dimensional array as its argument and return the highest value in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
4) getLowest. This method should accept a one-dimensional array as its argument and return the lowest value in the array. Write overloaded versions of this method that work with int, float, double, and long arrays.
Demonstrate the class in a complete program with test data stored in arrays of various data types.