D8. 已知:
class C {
public static void main(String[] args) {
boolean a = true;
boolean b = false;
boolean c = true;
if((a & b) | (b & c) & c)
System.out.print(“A”);
If((a = false) | (a & c) ) | (a | b))
System.out.print(“B”);
}
}
(A)A
(B)B
(C)AB
(D)编译错误