import java.util.Scanner;
public class MyExceptionTest {
static void inputException() throws MyException {
int a[]=new int[3];
Scanner sc=new Scanner(System.in);
System.out.println(“请输入3个整型数据:”);
int i,sum=0,average;
for(i=0;i<3;i++)
{
a[i]=sc.nextInt();
if(a[i]<0 || a[i]>100)
throw new MyException();
}
}
public static void main(String[] args) throws MyException{
// TODO 自动生成的方法存根
try{
inputException();
}
catch(MyException e)
{
System.out.println(“输入的数据需要在0-100之间(“+e+”)”);
}
finally
{
System.out.println(“最后一定会被执行的语句”);
}
}
}
class MyException extends Exception{
public String toString()
{
return “自定义的异常”;
}
}
运行结果:
另一种为: