帮忙找下错,加一分,多谢
ublic 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.plantln((a&&b)+"未通过")
System.out.plantln((a||d)+"通过")
System.out.plantln((!a)+"未通过")
System.out.plantln((c^d)+"通过")
}
}