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((a || b) + " 通过");
System.out.println((!a) + " 未通过");
System.out.println((c^d) + " 通过");
}
}
!a 加空格试试
c ^ d加空格试试
System.out.println((a && b) + " 未通过"); 右边括号错了 要英文的括号
找不到原因的都怪小蝌蚪去