码迷,mamicode.com
首页 > 其他好文 > 详细

4月29日作业

时间:2016-04-29 14:43:39      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

public class demo02{
public static void main(String args[]){
double i=0,j=0,k=0;
try{
i=Double.parseDouble(args[0]);
j=Double.parseDouble(args[1]);
}catch(ArrayIndexOutOfBoundsException

e){
System.out.println("输入参数个数不对");
return;
}catch(NumberFormatException e){
System.out.println("参数类型不对");
return;
}

try{
if(j==0){
throw new ArithmeticException();
}else{
k=i/j;
System.out.println(k);
}
}catch(ArithmeticException e)
{
System.out.println("除数不能为0");
}
catch(Exception e)
{
System.out.println(e);
}
}

}

 

技术分享

4月29日作业

标签:

原文地址:http://www.cnblogs.com/yanyuying/p/5445967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!