为什么及格与不及格之间是用“:”,而不是“;”?
public class HelloWorld{
public static void main(String[] args) {
int score=68;
String mark =((score>60) ? "及格" : "不及格" );
System.out.println("考试成绩如何:"+mark);
}
}
搜索
复制
public class HelloWorld{
public static void main(String[] args) {
int score=68;
String mark =((score>60) ? "及格" : "不及格" );
System.out.println("考试成绩如何:"+mark);
}
}
搜索
复制
2021-12-01
举报