您的位置:首页 > 编程语言 > Java开发

Introduction to Java Programming编程题12.3<ArrayIndexOutBoundsException>

2015-09-28 19:58 686 查看
运行结果:

Enter the array's index less than 100: -5 q 111 9
Out of bounds.
Enter the array's index less than 100: qq
Index must be digital.
Enter the array's index less than 100: 5
Index 5: 144


ArrayIndexOutBounds.java

import java.util.InputMismatchException;
import java.util.Scanner;

public class ArrayIndexOutBounds {
public static void main(String[] args) {
int[] a = new int[100];
for (int i = 0; i < 100; i++) {
a[i] = (int) (Math.random() * 200);
}
Scanner input = new Scanner(System.in);
boolean n = true;
do {
System.out.print("Enter the array's index less than 100: ");
try {
int index = input.nextInt();
if (index >= 0 || index < 100) {
System.out.println("Index " + index + ": " + a[index]);
n = false;
}
} catch (InputMismatchException e) {
System.out.println("Index must be digital.");
} catch (ArrayIndexOutOfBoundsException e) {
System.out.println("Out of bounds.");
}
input.nextLine();
} while (n);
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: