Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started