输出得到的<br/>是什么意思呢?该怎么样得到正确的输出格式呢?
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)+" 通过 ");
}
}
输出为:
false 未通过 <br/>true 通过 <br/>false 未通过 <br/>true 通过 <br/>