哪位大神指导下哪里不对呢
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
}
}