Question: *HELP ME QUICKLY PLEASE* Rewrite the following code to include the appropriate bounds checking import java.util.Scanner; public class Overflow2 { public static void main(String[] args)

*HELP ME QUICKLY PLEASE*

Rewrite the following code to include the appropriate bounds checking

import java.util.Scanner;

public class Overflow2 {

public static void main(String[] args) {

Scanner scan = new Scanner(System.in);

int[] vals = new int[10];

System.out.println("How many values should be stored in the array? ");

int count = scan.nextInt();

for (int i = 0; i < count; i++ ) {

vals[i] = count-i; }

System.out.println("Which value do you wish to retrieve? ");

int which = scan.nextInt();

System.out.println("Your value is " +vals[which]);

}

}

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!