为什么位置换了答案就不同
public class HelloWorld{ public static void main(String[] args) { int score=68; String mark =(score >= 60)? "不及格":"及格"; System.out.println("考试成绩如何:"+mark); } } 为什么我把 及格 和 不及格 的位置换一下 就变成 不及格了 明明是大于60 为什么换下位置就不同答案了呢?
public class HelloWorld{ public static void main(String[] args) { int score=68; String mark =(score >= 60)? "不及格":"及格"; System.out.println("考试成绩如何:"+mark); } } 为什么我把 及格 和 不及格 的位置换一下 就变成 不及格了 明明是大于60 为什么换下位置就不同答案了呢?
2016-07-22
举报