Question: Write two overloaded methods that return the average of an array with the following headers: public static double average( double [] array) //1st method Write
Write two overloaded methods that return the average of an array with the following headers:
public static double average( double [] array) //1st method
Write a method that finds the smallest element in this array of double values using the following
header:
public static double min( double [] array) //2nd method
Write a test program that prompts the user to enter 10 double values, invokes the 1st method, then displays the average value. In addition, invokes 2nd method to return the minimum value, and displays the minimum value.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
