Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please answer both questions 1 and 2. Please use java programming. Question 1. import java.util.Scanner; public class ArraysKeyValue { public static void main (String []

Please answer both questions 1 and 2. Please use java programming.

Question 1.

image text in transcribed

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 (i = 0; i

/* Your solution goes here */

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

Question 2.

image text in transcribed

import java.util.Scanner;

public class PrintRunTimes { public static void main (String [] args) { Scanner scnr = new Scanner(System.in); final int NUM_ELEMENTS = 5; int [] runTimes = new int[NUM_ELEMENTS]; int i;

for (i = 0; i

/* Your solution goes here */

} }

Find the maximum value and minimum value in miles Tracker. Assign the maximum value to maxMiles, and the minimum value to minMiles. Sample output for the given program: Min miles: -10 Max miles: 40 Write three statements to print the first three elements of array runTimes. Follow each statement with a newline. Ex: If run Times {800, 775, 790, 805, 808}, print: 800 775 790

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

Data And Databases

Authors: Jeff Mapua

1st Edition

1978502257, 978-1978502253

More Books

Students also viewed these Databases questions

Question

Why do HCMSs exist? Do they change over time?

Answered: 1 week ago