标签:
【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 }
程序运行结果
标签:
原文地址:http://www.cnblogs.com/liusiyang1126/p/5444795.html