摘要: 条件运算符 ? : package operator; //三元运算符 public class Demo08 { public static void main(String[] args) { // x ? y : z //如果x==true,则结果为y,否则结果为z int score = 8 阅读全文
posted @ 2021-03-10 22:09 Caesar_spike 阅读(27) 评论(0) 推荐(0) 编辑