package com.liu.operator;
public class Demo5 {
public static void main(String[] args) {
//x ? y : z;
//如果x的结果为ture,结果为y,否则结果为z
int score = 60;
String type = score<60?"不及格":"及格";
System.out.println(type);
}
}
原文:https://www.cnblogs.com/sm12580/p/15207879.html