单项选择题

在执行完此程序段后,i,j值为
int i=1,j=10;
do
if(++i>j--)continue;
while(i<5);
A) i=6 and j=5 B) i=5 and j=5
C) i=6 and j=4 D) i=5 and j=6