条件运算符

xyz //x值如果为true=y,如果为false=z

如:

public class day0928 {
    public static void main(String[]args){
        int  score= 60;
        int  fh=80;
        int  yb=67;
        int   pm=50;
        System.out.println("fh:"+(fh>=score?"及格":"不及格"));
        System.out.println("fh:"+(yb>=score?"及格":"不及格"));
        System.out.println("fh:"+(pm>=score?"及格":"不及格"));
    }
}

运行结果:

fh:及格

fh:及格

fh:不及格

 

可以使用”if"来进行判断。

posted @ 2021-09-29 23:17  光明^^龙  阅读(42)  评论(0编辑  收藏  举报