三元运算符

/**
* x ? y : z
* 如果x==true 则返回y 否则结果为z
*/
public static void main(String[] args) {

int score = 50;
String stype=score<60 ? "不及格" : "及格";
System.out.print(stype);

}

posted @ 2023-03-13 10:57  霍叔  阅读(5)  评论(0编辑  收藏  举报