我這個(gè)為啥錯(cuò)誤
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)+"通過");
}
}
2021-08-30
println? L小寫l,不是大寫I??