package operator;
public class Demo05 {
public static void main(String[] args) {
//三元运算符 x?y:z
int score = 80;
String type = score > 60 ? "及格" : "不及格";
System.out.println(type);
int a = 2;
int b = 5;
System.out.println(a + b);
System.out.println(a * (b - a));
}
}
三元运算符
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Scala 运算符Scala
-
三元运算符
CreateTime--2016年12月16日17:36:20Author:Marydon三元运算符 条件 ? 成立执行 : 不成立
JS 三元运算符 javascript 赋值