int i=1,j=10; do( if(i++>--j) contiue; while (i

来源:学生作业学帮网 编辑:学帮网 时间:2024/06/04 06:25:24

int i=1,j=10; do( if(i++>--j) contiue; while (i

i=5,j=6
int i=1,j=10;//初始化变量
do
if(i++>--j)
contiue;//do循环,i是后自增,就是先比较再加一,j是先自减,就是先减一再比较.
while (i