java第5次作业(1)

写一个方法void triangle(int a,int b,int c),判断三个参数是否能构成一个三角形。如果不能则抛出异常IllegalArgumentException,显示异常信息:a,b,c “不能构成三角形”;如果可以构成则显示三角形三个边长。在主方法中得到命令行输入的三个整数,调用此方法,并捕获异常。

import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.InputMismatchException;
import java.util.Scanner;
public class Test {
public static void main(String[] args) throws Exception {
int shuzu[];
shuzu =new int[3];
System.out.println("请输入数值:");
Scanner a=new Scanner(System.in);
int a1=a.nextInt();
Scanner b=new Scanner(System.in);
int a2=a.nextInt();
Scanner c=new Scanner(System.in);
int a3=a.nextInt();
shuzu[0]=a1;shuzu[1]=a2;shuzu[2]=a2;
Arrays.sort(shuzu);
PrintCourse  t=new PrintCourse ();
try
{
t.triangle(a1, a2, a3);
  
}
catch(IllegalArgumentException e){
System.err.println("不能构成三角形");
e.printStackTrace();
}
catch(InputMismatchException e1){
System.err.println("输入数据类型不匹配");
e1.printStackTrace();
}
finally{
System.out.print("感谢使用本程序!");
}}
}


import java.util.InputMismatchException;
public class PrintCourse {
public void triangle(int a,int b,int c ) throws Exception 
{
if((a+b>c)&&(c-a<b))
{
System.out.println("可以构成三角形");
}
else 
{
throw new IllegalArgumentException("不能构成三角形");
 
}
}
}



总结:输入数据的不匹配的  异常处理不能显示   不是很懂...

 记住  throws throw的区别

会使用try catch finally的用法

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值