三元运算符

package operator;
//三元运算符
public class Demo08 {
public static void main(String[] args) {
int score = 50;
String type = score < 60 ? "不及格" : "及格了"; //必须掌握
//if

System.out.println(type);
}
}
posted @ 2022-06-06 20:33  whgjwr  阅读(6)  评论(0)    收藏  举报