boolean flag = true; if (!flag) { System.out.println("A"); } else { System.out.println("B"); }
,
Compilation Error
No output
B
A