int c=3;
while(c<8){
c+=1;
if(c==5){
continue;
}
printf("\n%d",c);
}
输出:
2 3 4 6 7
int c=3;
while(c<8){
c+=1;
if(c==5){
continue;
}
printf("\n%d",c);
}
输出:
2 3 4 6 7