CurryY
2019-07-28 16:46
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.prtinln(( ^d)+"通过");
}
}
1、println你打错了
2、^d前面加个变量
d右侧括号是中文括号
System.out.println(( c^d)+"通过");
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题