问答详情
源自: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.printIn((a&&b)+"未通过");

        System.out.printIn((a||b)+"通过");

        System.out.printIn((!a)+"未通过");

        System.out.printIn((c^d)+"通过");

}

}


提问者:qq_慕斯卡0592400 2021-08-30 03:27

个回答

  • 慕尼黑5381944
    2021-08-30 14:44:27

    println  L小写l,不是大写I