如果运行结果里不想出现true或false该怎么改
如果运行结果里不想出现true或false该怎么改
如果运行结果里不想出现true或false该怎么改
2016-03-20
第一次提问不太清楚规则,我是在JAVA入门第一季 3-5里提出的,以为会在下面留言里。
贴上代码:
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) + "通过");
}
}
举报