Skip to content

4.8 跳转语句contunue

发布时间:

作用:在盾环语句中,跳过本次循环中余下尚未执行的语句,继续执行下一次循环 示例

js
int main() {
    for (int 1 = 0; 1 < 100; 1++)
    {
        if (i % 2 == 0)
        { 
            continue;
        }
        cout << i << endl;
    }
    system("pause");
    return 0;
}  
    ```
注意:continue并没有使整个循环终止,而break会跳出循环