Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The Java code below passes with initial inputs, but fails upon the second set of inputs. The second set of inputs are 73,0 and the

The Java code below passes with initial inputs, but fails upon the second set of inputs. The second set of inputs are 73,0 and the results expected is:

Min miles: 0

Max miles: 73

However what prints is :

Min miles: 73

Max miles: 73

Update the code below to yield the correct output upon the 2nd set of inputs. ONLY THE BOLDED CODE SHOULD BE UPDATED. ALL ELSE SHOULD STAY THE SAME.

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 

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; int j; int maxMiles; // Assign with first element in milesTracker before loop int minMiles; // Assign with first element in milesTracker before loop

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

for (i = 0; i milesTracker[i][j]) minMiles = milesTracker[i][j];

if (maxMiles

} }

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

This is in zybooks. Here is a scrrenshot of the code failing.

image text in transcribed

Run Testing with milesTracker-K10, 20), {30, 40)) Min miles: -10 Your output Max miles: 40 Special character legend Testing with milesTracker-(73,0)) Min miles: 73 Your output Max miles: 73 Min miles: Expected output Max miles: 73 Special character legend

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

Relational Database And Transact SQL

Authors: Lucy Scott

1st Edition

1974679985, 978-1974679980

More Books

Students also viewed these Databases questions

Question

Explain how deferred income is recorded. (Section 11.5)

Answered: 1 week ago

Question

8. Explain the contact hypothesis.

Answered: 1 week ago

Question

7. Identify four antecedents that influence intercultural contact.

Answered: 1 week ago