public class Demo11 {
//三元运算符
public static void main(String[] args) {
//x ? y : z
//如果x==true 则结果为y 否则结果为z
int score = 80;
String type = score <60 ?"不及格":"及格";
System.out.println(type);
String type1 = score >60 ?"及格":"不及格";
System.out.println(type1);
//if
}
}
相关文章
- 12-17加号(+)运算符重载
- 12-17Day4 运算符与while函数
- 12-17Python之__slots__ &运算符重载反向运算
- 12-17day05_运算符入门
- 12-17day05_运算符入门
- 12-17身份证运算符 is 和 is not(检查两个数据在内存当中是否是同一个值) | 逻辑运算符 and or not | 数据类型的判断 isinstance
- 12-17算数运算符: + - * / //(地板除) %(取余) **(幂运算) / 比较运算符 > < >= <= == !=
- 12-17运算符及流程控制、while循环、for遍历
- 12-17Python_note_003(Python中的输入函数input()、运算符用法)
- 12-17003运算符