Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Find the maximum value and minimum value in milesTracker. Assign the maximum value to maxMiles, and the minimum value to minMiles. Sample output for the

Find the maximum value and minimum value in milesTracker. Assign the maximum value to maxMiles, and the minimum value to minMiles. Sample output for the given program:

Min miles: -10 Max miles: 40 

Here's what I have so far:

import java.util.Scanner;

public class ArraysKeyValue { public static void main (String [] args) { final int NUM_ROWS = 2; final int NUM_COLS = 2; int [][] milesTracker = new int[NUM_ROWS][NUM_COLS]; int i = 0; int j = 0; int maxMiles = 0; // Assign with first element in milesTracker before loop int minMiles = 0; // Assign with first element in milesTracker before loop

milesTracker[0][0] = -10; milesTracker[0][1] = 20; milesTracker[1][0] = 30; milesTracker[1][1] = 40;

//edit from here

for(i = 0; i maxMiles){ maxMiles = milesTracker[i][j]; } } } for(i = 0; i

//edit to here

System.out.println("Min miles: " + minMiles); System.out.println("Max miles: " + maxMiles); }

My output: }image text in transcribed

Testing with milesTracker-H-10, 20)(30, 40)) Min miles: -10 Max miles: 40 Your output V Testing with milesTracker = {(73, 0)) Your output Max miles: 73 Testing with milesTracker-u-5), {-93}, {-259)) Min miles: -259 Max miles: O Min miles: -259 Max miles:-5 Your output Expected output

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Learning PostgreSQL

Authors: Salahaldin Juba, Achim Vannahme, Andrey Volkov

1st Edition

178398919X, 9781783989195

More Books

Students also viewed these Databases questions