Use the following code without changing anything to to produce the output that is attached. public class GradeBookTest { public static void main( String[] args ) { // two-dimensional array of student grades int[][] gradesArray = { { 87, 96, 70 }, { 68, 87, 90 }, { 94, 100, 90 }, { 100, 81, 82 }, { 83, 65, 85 }, { 78, 87, 65 }, { 85, 75, 83 }, { 91, 94, 100 }, { 76, 72, 84 }, { 87, 93, 73 } }; processGrades(gradesArray); rowAverage(row) lowestGrade(gradesArray); maxGrade(gradesArray); } // end main } // end class GradeBookTest
Use the following code without changing anything to to produce the output that is attached.
public class GradeBookTest
{
public static void main( String[] args )
{
// two-dimensional array of student grades
int[][] gradesArray = { { 87, 96, 70 },
{ 68, 87, 90 },
{ 94, 100, 90 },
{ 100, 81, 82 },
{ 83, 65, 85 },
{ 78, 87, 65 },
{ 85, 75, 83 },
{ 91, 94, 100 },
{ 76, 72, 84 },
{ 87, 93, 73 } };
processGrades(gradesArray);
rowAverage(row)
lowestGrade(gradesArray);
maxGrade(gradesArray);
} // end main
} // end class GradeBookTest
Step by step
Solved in 3 steps with 1 images