public class demo8 { public static void main(String[] args) { /*三元运算符 x?y:z x==ture则输出为y否则输出z */ int score1=80; String type1=score1>60?"及格":"不及格"; System.out.println(type1); }
三元运算符
原文:https://www.cnblogs.com/z25528968/p/13496948.html