package operator; //三元运算符 public class Demo8 { public static void main(String[] args) { //x ? y : z //如果x==true 结果为y 否则为z int score = 80; String type = score<60 ? "不及格" : "及格"; System.out.println(type); } }
三元运算符
最新推荐文章于 2025-05-28 23:39:14 发布
package operator; //三元运算符 public class Demo8 { public static void main(String[] args) { //x ? y : z //如果x==true 结果为y 否则为z int score = 80; String type = score<60 ? "不及格" : "及格"; System.out.println(type); } }