Question: The following code fragment is intended to examine an array of double values and print out the maximum value in the array. Modify the code
The following code fragment is intended to examine an array of double values and print out the maximum value in the array. Modify the code to print out the maximum value of each row in that array.
public class Program3 {
public static void main(String[] args) {
int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}};
int v = values[0][0];
for (int row = 0; row < values.length; row++)
for (int column = 0; column < values[row].length; column++)
if (v < values[row][column]) v = values[row][column]; System.out.print(v); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
