int x=0; <br /> int y 10; <br /> do { <br /> y--; <br /> ++x; <br /> } while (x < 5); <br /> System.out.print(x + “,“ + y); <br /> What is the result?() 
A、 5,6
B、 5,5
C、 6,5
D、 6,6