Question: Write a complete Java program to implement the java code below. Your program will compute the following averages: In main: public static void main(String[] args)

Write a complete Java program to implement the java code below. Your program will compute the following averages: In main: public static void main(String[] args) { int[][] grades = {{91, 62, 73, 84, 95 }, { 76, 77, 88, 9, 100 }, { 65, 72, 55, 81, 73 }, { 96, 97, 100, 79, 80 } }; displayArray (grades); System.out.println("Average of all scores is " + getAverage(grades)); System.out.println("Lowest of all scores is " + getLowest(grades)); } // end main Example Output: run: 91 62 73 84 95 76 77 88 9 100 65 72 55 81 73 96 97 100 79 80 Average of all scores is 77.65 Lowest of all scores is 9.0 BUILD SUCCESSFUL (total time: 0 seconds)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
