问题:
int i= 1, j= 10 ;
do (
if (i++> --j) continue;
) while (i<5);
After execution, what are the values for I and j? ()
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
int i= 1, j= 10 ;
do (
if (i++> --j) continue;
) while (i<5);
After execution, what are the values for I and j? ()
● 参考解析
本题暂无解析
相关内容
相关标签