continue语句在 for语句和while语句中的区别
while语句:
while(expr)
{
statement;
}
for语句
for(expr1;expr2;expr3)
{
statement;
}
![](https://img.haomeiwen.com/i6771934/1c00e586ffaabd7d.png)
continue语句在 for语句和while语句中的区别
while语句:
while(expr)
{
statement;
}
for语句
for(expr1;expr2;expr3)
{
statement;
}
本文标题:7.5 C控制语句:循环辅助 continue
本文链接:https://www.haomeiwen.com/subject/fxgyhxtx.html
网友评论