public class WhileFoo {  <br /> public static void main (String args) {  <br /> int x= 1, y = 6;  <br /> while (y--) {x--;}  <br /> system.out.printIn(“x=” + x “y =” + y);  <br /> }  <br /> }  <br /> What is the result?()
A、 The output is x = 6 y = 0
B、 The output is x = 7 y = 0
C、 The output is x = 6 y = -1
D、 The output is x = 7 y = -1
E、 Compilation will fail.