我是靠谱客的博主 舒适鱼,最近开发中收集的这篇文章主要介绍异常处理--三角形,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

package test;
public class Triangle{
public void triangle(int a,int b,int c)throws IllegalArgumentException{
if(a+b>c&&c-a<b)
System.out.println("三角形的三个边长是:"+a+" "+b+""
+ " "+c);
else
throw new IllegalArgumentException();
}
}
package test;
import java.util.*;
public class Application {
public static void main(String[] args) {
// TODO Auto-generated method stub
try{
int i[]=new int[3];
System.out.println("请输入三角形的三条边");
Scanner input=new Scanner(System.in);
i[0]=input.nextInt();
i[1]=input.nextInt();
i[2]=input.nextInt();
Arrays.sort(i);//系统自动按升序自动排列
//System.out.println(i[0]+i[1]+i[2]);
Triangle t=new Triangle();
t.triangle(i[0],i[1],i[2]);
}
catch(ArrayIndexOutOfBoundsException a){
System.err.println("数组下标越界");
}
catch(InputMismatchException e){
System.err.println("输入不符合实际情况,请输入数字作为三角形的边长");
e.printStackTrace();
}
catch(IllegalArgumentException e){
System.err.println("不能构成三角形");
}
catch(Exception e){
System.err.println("出现错误");
e.printStackTrace();
}
}
}

这里写图片描述
这里写图片描述
这里写图片描述

最后

以上就是舒适鱼为你收集整理的异常处理--三角形的全部内容,希望文章能够帮你解决异常处理--三角形所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部