int x = 1, y =6; <br /> while (y--) { <br /> x++; <br /> } <br /> System.out.println(“x =” + x + “y =” +y);<br /> What is the result?()  
A、 x = 6 y = 0
B、 x = 7 y = 0
C、 x = 6 y = -1
D、 x = 7 y = -1
E、 Compilation fails.