Question: Show output and write comments. This is for Java. Write two overloaded methods that return the average of an array with the following headers: public
Write two overloaded methods that return the average of an array with the following headers: public static int average(int[] array) public statie double average(doublel] array) /t 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) //2d 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. Here are sample runs: Sample 1: Enter 10 double values: 1.9 2.5 3.7 2 1.5 63452 The average value is 3.16 The minimal value is 1.5 Sample 2: Enter 10 double values: 10 15 18 20.5 7.5 12 19 30 50 20 The average value is 20.2 The minimal value is 7.5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
