/**
* x ? y : z
* 如果x==true 则返回y 否则结果为z
*/
public static void main(String[] args) {
int score = 50;
String stype=score<60 ? "不及格" : "及格";
System.out.print(stype);
}
/**
* x ? y : z
* 如果x==true 则返回y 否则结果为z
*/
public static void main(String[] args) {
int score = 50;
String stype=score<60 ? "不及格" : "及格";
System.out.print(stype);
}