各位大佬幫忙看看哪里錯(cuò)了啊
public class HelloWorld {
? ? public static void main(String[] args) {
boolean a = true; // a同意
boolean b = false; // b反對(duì)
boolean c = false; // c反對(duì)
boolean d = true; // d同意
System.out.println((a&&b)+"未通過(guò)");
System.out.println((a//b)+"通過(guò)");
System.out.println((!a)+"未通過(guò)");
System.out.println((c^d)+"通過(guò)");
? ??
? ??
? ??
? ??
}
}
2019-05-06
第15行 第30字符,是“||”符號(hào),而不是“//”符號(hào)