eclipse里写完的java点运行标志什么反应都没有,系统也没提示我有错误 5
packagegary;importjava.util.Scanner;publicclassTriangleClassifier{publicstaticvoidmai...
package gary;
import java.util.Scanner;
public class TriangleClassifier {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner one=new Scanner(System.in);
int a=one.nextInt();
System.out.print("Enter side 1:");
Scanner two=new Scanner(System.in);
int b=two.nextInt();
System.out.print("Enter side 2:");
Scanner three=new Scanner(System.in);
int c=three.nextInt();
System.out.print("Enter side 3:");
int max=Math.max(a,b);
if (max>c) {
if (max==a) {
a=c;
}else {
b=c;
}
c=max;
}
if (!(a+b>c&&Math.abs(a-b)<c)){
System.out.print("Invaild! The Three sides do not form a triangle.");
} else if (a!=b||b!=c||c!=a){
System.out.print("The three sides form a scalene triangle.");
} else if (a==b&&b==c&&c==a) {
System.out.print("The three sides form a isosceles triangle.");
} else if (a==b||b==c) {
System.out.print("The three sides form a equilateral triangle");
}
if (a*a+b*b==c*c) {
System.out.print("The triangle is right-triangle.");
}
one.close();
two.close();
three.close();
}
}
系统是OS X的,电脑刚刚买的 不知道是不是jdk安装的什么问题 展开
import java.util.Scanner;
public class TriangleClassifier {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner one=new Scanner(System.in);
int a=one.nextInt();
System.out.print("Enter side 1:");
Scanner two=new Scanner(System.in);
int b=two.nextInt();
System.out.print("Enter side 2:");
Scanner three=new Scanner(System.in);
int c=three.nextInt();
System.out.print("Enter side 3:");
int max=Math.max(a,b);
if (max>c) {
if (max==a) {
a=c;
}else {
b=c;
}
c=max;
}
if (!(a+b>c&&Math.abs(a-b)<c)){
System.out.print("Invaild! The Three sides do not form a triangle.");
} else if (a!=b||b!=c||c!=a){
System.out.print("The three sides form a scalene triangle.");
} else if (a==b&&b==c&&c==a) {
System.out.print("The three sides form a isosceles triangle.");
} else if (a==b||b==c) {
System.out.print("The three sides form a equilateral triangle");
}
if (a*a+b*b==c*c) {
System.out.print("The triangle is right-triangle.");
}
one.close();
two.close();
three.close();
}
}
系统是OS X的,电脑刚刚买的 不知道是不是jdk安装的什么问题 展开
1个回答
展开全部
出现这种情况,只能用debug模式,看看哪里报错或者是跳出程序运行的了。
第一步:在程序运行开始的位置,双击代码左侧的line;
第二步:此时就会生成一个断点,之后debug运行项目;
第三步:一直到断点的位置,之后一直按F6,之后看看那个步骤出了问题,之后进行解决即可。
第一步:在程序运行开始的位置,双击代码左侧的line;
第二步:此时就会生成一个断点,之后debug运行项目;
第三步:一直到断点的位置,之后一直按F6,之后看看那个步骤出了问题,之后进行解决即可。
追问
没有错误呀,我在想是不是jdk安装的问题
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |