哪位大神指导下哪里不对呢

来源:3-5 Java中的逻辑运算符

慕标1256376

2019-05-23 12:51

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.tringln((a && b)+"反对");
        System.out.tringln((a || b)+"同意");
        System.out.tringln((!a)+"反对");
        System.out.tringln((c ^ d)+"同意");
    x
 }
}

写回答 关注

3回答

  • 孙刘
    2019-05-28 16:59:37

    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^b) + "通过");

        

    }

    }


  • kk求知者
    2019-05-26 20:46:20

    System.out.println();

  • 慕移动0984753
    2019-05-23 12:59:30

            System.out.tringln((a && b)+"反对");少了p
            System.out.tringln((a || b)+"同意");少了p      

            System.out.tringln((!a)+"反对");少了p  

            System.out.tringln((c ^ d)+"同意");少了p  

          x多了

Java入门第一季(IDEA工具)升级版

0基础萌新入门第一课,从Java环境搭建、工具使用、基础语法开始

1165172 学习 · 17581 问题

查看课程

相似问题