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

异或怎么打?

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||b)+"通过");
        System.out.println((!a)+"未通过");
        System.out.println((c ^ d)+"未通过");
   
 }
}

提问者:慕侠9225886 2019-05-22 17:02

个回答

  • 默X以
    2019-05-22 18:00:01
    已采纳

    按住shift + 6