慕妹8479363
2020-02-06 17:04
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 || d)+"通过");
System.out.println((!a)+"未通过");
System.out.println((c ^ d)+"通过");
}
}
输出的分号都错了
分号错了
少了空格,字符串的前面都有一个空格,你少加了
分号是英文的分号。。。
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题