码迷,mamicode.com
首页 > 编程语言 > 详细

第8次Java作业+LSYang

时间:2016-04-29 00:02:06      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:

【P257】编写应用程序,从命令行输入两个小数参数,求它们的商。要求程序中捕捉NumberFormatException异常和ArithmeticException异常。

 1 public class Exception{
 2     public static void main(String[] args) {
 3         try{
 4             double i=Double.parseDouble(args[0]);
 5             double j=Double.parseDouble(args[1]);
 6             if(j==0)throw new ArithmeticException();
 7             double result=i/j;
 8             System.out.println(result);
 9         }
10         catch(ArithmeticException ae){
11             System.out.println("除数不能为零!");
12         }
13         catch(NumberFormatException nfe){
14             System.out.println("请输入两个小数!");
15         }
16     }
17 }

程序运行结果

技术分享

第8次Java作业+LSYang

标签:

原文地址:http://www.cnblogs.com/liusiyang1126/p/5444795.html

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