1.编写一个程序满足下面要求的程序ArrayExceptionTest.java: 创建一个由100个随机选取的整数构成的数组 提示用户输入数组下标,然后显示对应的元素值 如果用户输入的不是一个可转化为整数的字符(抛出InputMismatchException),就显示消息” Incorrect input re-enter one integers number:”。要求用户重新输入。 如果用户输入的数字越界(抛出IndexOutOfBoundsException),就显示消息” Out of Bounds re-enter one integers number:”要求用户重新输入。
时间: 2024-02-25 08:58:44 浏览: 78
好的,以下是符合要求的程序ArrayExceptionTest.java:
```java
import java.util.InputMismatchException;
import java.util.Random;
import java.util.Scanner;
public class ArrayExceptionTest {
public static void main(String[] args) {
int[] arr = new int[100];
Random rand = new Random();
for (int i = 0; i < arr.length; i++) {
arr[i] = rand.nextInt(100);
}
Scanner input = new Scanner(System.in);
while (true) {
System.out.print("Enter an index: ");
try {
int index = input.nextInt();
System.out.println("The corresponding element value is " + arr[index]);
} catch (InputMismatchException e) {
System.out.println("Incorrect input, re-enter one integers number:");
input.nextLine();
} catch (IndexOutOfBoundsException e) {
System.out.println("Out of Bounds, re-enter one integers number:");
}
input.nextLine();
}
}
}
```
程序的主要思路是:
1. 创建一个由100个随机选取的整数构成的数组。
2. 使用Scanner类获取用户输入的数组下标。
3. 使用try-catch语句捕获可能抛出的异常。
4. 如果用户输入的不是一个可转化为整数的字符,则抛出InputMismatchException异常,并提示用户重新输入。
5. 如果用户输入的数字越界,则抛出IndexOutOfBoundsException异常,并提示用户重新输入。
6. 如果用户输入的下标合法,则显示对应的元素值。
7. 使用while循环使程序可以反复执行。
阅读全文