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安装的什么问题
展开
 我来答
逃离这座伤城丶
2018-10-20 · TA获得超过207个赞
知道答主
回答量:80
采纳率:75%
帮助的人:20.8万
展开全部
出现这种情况,只能用debug模式,看看哪里报错或者是跳出程序运行的了。
第一步:在程序运行开始的位置,双击代码左侧的line;
第二步:此时就会生成一个断点,之后debug运行项目;
第三步:一直到断点的位置,之后一直按F6,之后看看那个步骤出了问题,之后进行解决即可。
追问
没有错误呀,我在想是不是jdk安装的问题
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式