public class HelloWorld{ public static void main(String[] args) { int score=68; String mark=(score >= 60) ? "及格" : "不及格"; System.out.println("考试成绩如何:"+mark); } } 显示错误,哪错了呢?
用myeclipse运行,是正确的。。。
应该是
String mark = (score >= 60? "及格" : "不及格");