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

I have presently:

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; // Answer between these two comments

for(i = 0;i < NUM_ROWS; i++) { for( j=0;j < NUM_COLS; j++) { if(milesTracker[i][j] > maxMiles) maxMiles = milesTracker [i][j]; if(milesTracker[i][j] < minMiles) minMiles = milesTracker[i][j]; } }

//Answer between these two comments

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

And am getting the following errors:

ArraysKeyValue.java:23: error: variable maxMiles might not have been initialized if(milesTracker[i][j] > maxMiles) ^ ArraysKeyValue.java:25: error: variable minMiles might not have been initialized if(milesTracker[i][j] < minMiles) ^ ArraysKeyValue.java:30: error: variable minMiles might not have been initialized System.out.println("Min miles: " + minMiles); ^ ArraysKeyValue.java:31: error: variable maxMiles might not have been initialized System.out.println("Max miles: " + maxMiles); ^ 4 errors

Please help!

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

Big Data 29th British National Conference On Databases Bncod 2013 Oxford Uk July 2013 Proceedings Lncs 7968

Authors: Dan Olteanu ,Georg Gottlob ,Christian Schallhart

2013th Edition

3642394663, 978-3642394669

More Books

Students also viewed these Databases questions

Question

Design a training session to maximize learning. page 296

Answered: 1 week ago

Question

Design a cross-cultural preparation program. page 300

Answered: 1 week ago