int i = 1,j = 10; <br /> do { <br /> if(i>j) { <br /> break; <br /> }<br /> j--; <br /> } while (++i <5); <br /> System.out.println(“i =” +i+” and j = “+j);<br /> What is the result?()
A、 i = 6 and j = 5
B、 i = 5 and j = 5
C、 i = 6 and j = 4
D、 i = 5 and j = 6
E、 i = 6 and j = 6