从命令行输入5个整数,放入一整型数组,然后打印输出。要求:
如果输入数据不为整数,要捕获输入不匹配异常,显示“请输入整数”;如果输入数据多余5个,捕获数组越界异常,显示“请输入5个整数”。
无论是否发生异常,都输出“感谢使用本程序!”
import java.util.InputMismatchException;
import java.util.Scanner;
public class ExceptionTest2 {
public static void main(String[] args)throws Exception {
// TODO 自动生成的方法存根
try{
int a[]=new int[5];
System.out.println("输入5个整数");
for(int i=0;i<10;i++){
Scanner sc=new Scanner(System.in);
a[i]=sc.nextInt();
}
for(int j=0;j<5;j++)
{
System.out.print("a["+j+"]="+a[j]+",");
}
}
catch(ArrayIndexOutOfBoundsException e){
//System.out.println(e.getMessage());
e.printStackTrace();
}
catch(InputMismatchException e){
//System.out.println(e.getMessage());
e.printStackTrace();
}
finally{
System.out.println("感谢使用本程序");
}
}
}
时间: 2024-11-08 21:52:13