C++ continue语句
continue语句与break语句类似。然而,它并不强制终止循环,而是强制下一个迭代开始,跳过中间任何代码。
对于for循环,continue会执行条件测试和递增部分。对于while和do…while循环,程序控制会转移到条件测试部分。
语法
C++中continue语句的语法如下所示:
continue;
流程图
示例
#include <iostream>
using namespace std;
int main () {
// Local variable declaration:
int a = 10;
// do loop execution
do {
if( a == 15) {
// skip the iteration.
a = a + 1;
continue;
}
cout << "value of a: " << a << endl;
a = a + 1;
}
while( a < 20 );
return 0;
}
当上述代码被编译和执行时,将产生以下结果 –
value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 16
value of a: 17
value of a: 18
value of a: 19