Question: ACTIVITY 5 . 9 . 1 : Find 2 D array max and min. Find the maximum value and minimum value in milesTracker. Assign the

ACTIVITY
5.9.1: Find 2D array max and min.
Find the maximum value and minimum value in milesTracker. Assign the maximum value to maxMiles, and the minimum value to minMiles.
Ex: If the input is:
-10,203040
the output is:
Min miles: -10
Max miles: 40
(Notes).
Learn how our autograder works
528040.3489528.qx3zqy7
import java.util.Scanner;
public class ArrayskeyValue {
public static void main (String [] args){
Scanner scnr = new Scanner(
System.in);
final int NUM_ROWS =2;
final int NUM_COLS =2;
int [][] milesTracker = new int[NUM_ROWS][NUM_COLS];
int i;
int j;
int maxMiles; // Assign with first element in milesTracker before loop
int minMiles; // Assign with first element in milesTracker before loop
for milesTracker.length; i++
for milesTracker i. length; j++
milesTracker [i][j]=scnr. nextInt () ;
 ACTIVITY 5.9.1: Find 2D array max and min. Find the maximum

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!