//----------三角形边长的判断---------------------
class SanJiao
{
//求最大值
static Double Max(Double a,Double b,Double c){
if (a>=b)
{
if (a>=c)
{
return a;
}
else if (a<c)
{
return c;
}
}
else{
if (b>=c)
{
return b;
}
else if (b<c)
{
return c;
}
}
}
//求最小值
static Double Min(Double a,Double b,Double c){
if (a<=b)
{
if (a<=c)
{
return a;
}
else if (a>c)
{
return c;
}
}
else{
if (b<=c)
{
return b;
}
else if (b>c)
{
return c;
}
}
}
public static void main(String[] args)
{
Double a=Double.parseDouble(args[0]);
Double b=Double.parseDouble(args[1]);
Double c=Double.parseDouble(args[2]);
if ((a>0)&&(b>0)&&(c>0))
{
Double max=Max(a,b,c);
Double min=Min(a,b,c);
Double mid=a+b+c-max-min;
if (((min+mid)>max)&&((max-mid)<min))
{
System.out.println("这三条线段可以组成一个三角形!");
}
else{
System.out.println("这三条线段不能组成一个三角形");
}
}
else{
System.out.println("三角形的边长不能为零或负值!");
}
}
}
这是我编的一个判断三个数是否可以组成一个三角形的程序,但是调试时总是报“缺少返回语句”错误,请各位帮忙查一下!