&& 和 || 逻辑运算符

        int x = 0,y =0;
        
        /*if (x==0 && ++y == 8) {
        }*/
        
        /*if (x==1 && ++y == 8) {
        }*/
        
        /*if (x==0 || ++y == 8) {
        }*/
        
        if (x==1 || ++y == 8) {
        }
        
        System.out.println(x);
        System.out.println(y);

 

posted @ 2018-02-08 10:54  aLa神灯  阅读(102)  评论(0编辑  收藏  举报