实在找不出错误,求帮忙,谢谢谢谢
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(( !c) + "通过");
System.out.println((b||c) + "未通过");
Systm.out.println((c^d) + "通过");
}
}