问答详情
源自:3-5 Java中的逻辑运算符

如果运行结果里不想出现true或false该怎么改

如果运行结果里不想出现true或false该怎么改

提问者:fasgth 2016-03-20 22:30

个回答

  • fasgth
    2016-03-21 20:42:23

    第一次提问不太清楚规则,我是在JAVA入门第一季 3-5里提出的,以为会在下面留言里。

    贴上代码:

    public class HelloWorld {
        public static void main(String[] args) {
            boolean a = true; // a同意
            boolean b = false; // b反对
            boolean c = false; // c反对
            boolean d = true; // d同意
            
            System.out.println((a && b) + "未通过");
            System.out.println((a || d) + "通过");
            System.out.println((!a) + "未通过");
            System.out.println((c ^ d) + "通过");
        
        
        }
    }

  • qq_天道酬勤_5
    2016-03-20 23:12:52

    小伙子,说的具体点