慕标1256376
2019-05-23 12:51
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
}
}
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^b) + "通过");
}
}
System.out.println();
System.out.tringln((a && b)+"反对");少了p
System.out.tringln((a || b)+"同意");少了p
System.out.tringln((!a)+"反对");少了p
System.out.tringln((c ^ d)+"同意");少了p
x多了
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题