java wrong wrong 报错
importjava.io.*;classK12_3{publicstaticvoidmain(String[]args)throwsIOException{System...
import java.io.*;
class K12_3{
public static void main(String[] args)throws IOException{
System.out.println("例外を発生させくるため以下のいずれかを入力してください。");
System.out.println("0:ArithmeticException");
System.out.println("3.5:NumberFormatException");
System.out.println("100:ArrayIndexOutBoundsException");
System.out.println("5:例外を発生させない");
System.out.println("-1:プログラムの终了");
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int num = Integer.parseInt(str);
double i=0.0;
if(num==0){
try{
int res=10;
int temp;
temp=res/0;
}
catch(ArithmeticException e){
System.out.println(e+"の例外が発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
}
i=num;
if(i==3.5){
try{
//double num1=Integer.parseInt(str);
int res ;
res=i;
}
catch(NumberFormatException e){
System.out.println(e+"の例外が発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
}
if(num==100){
try{
int [] test;
test =new int [5];
test[num]=80;
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println(e+"の例外が発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
}
if(num==5){
try{
int res=10;
int temp;
temp=res/10;
System.out.println("例外は発生しませんでした");
}
catch(ArithmeticException e){
System.out.println("例外は発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
}
if(num==-1){
try{
int res=10;
int temp;
temp=res/10;
System.out.println("プログラムを终了します。");
}
catch(ArithmeticException e){
System.out.println(e+"の例外が発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
System.exit(1);
}
}
} 展开
class K12_3{
public static void main(String[] args)throws IOException{
System.out.println("例外を発生させくるため以下のいずれかを入力してください。");
System.out.println("0:ArithmeticException");
System.out.println("3.5:NumberFormatException");
System.out.println("100:ArrayIndexOutBoundsException");
System.out.println("5:例外を発生させない");
System.out.println("-1:プログラムの终了");
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine();
int num = Integer.parseInt(str);
double i=0.0;
if(num==0){
try{
int res=10;
int temp;
temp=res/0;
}
catch(ArithmeticException e){
System.out.println(e+"の例外が発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
}
i=num;
if(i==3.5){
try{
//double num1=Integer.parseInt(str);
int res ;
res=i;
}
catch(NumberFormatException e){
System.out.println(e+"の例外が発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
}
if(num==100){
try{
int [] test;
test =new int [5];
test[num]=80;
}
catch(ArrayIndexOutOfBoundsException e){
System.out.println(e+"の例外が発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
}
if(num==5){
try{
int res=10;
int temp;
temp=res/10;
System.out.println("例外は発生しませんでした");
}
catch(ArithmeticException e){
System.out.println("例外は発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
}
if(num==-1){
try{
int res=10;
int temp;
temp=res/10;
System.out.println("プログラムを终了します。");
}
catch(ArithmeticException e){
System.out.println(e+"の例外が発生しました。");
}
finally{
System.out.println("いつも実行されるfinally block です");
}
System.exit(1);
}
}
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询