C++循环
1、while
while( condition ) { statement(s);
}
2、for
for( i=0; i<5; i++ ) {
statement(s);
}
3、do...while
do {
statement(s);
} while ( condition );
do...while [ statement(s) 至少执行一次 ]
4、嵌套循环
5、无限循环
for(;;) { statement(s); }
无限循环可以ctrl+c终止循环
循环控制语句
1、break
强制终止循环语句 或 switch语句中的一个case;
2、continue
跳过本次循环;
3、goto
把控制无条件转移到同一函数内的背标记的语句;[ 不建议使用,它使得程序控制流难以控制 ],goto 例子 如下:
#include <iostream> using namespace std; int main() { int a = 10; //do循环执行 LOOP:do { if( a == 15 ) { //跳过迭代 a = a + 1; goto LOOP; } cout << "a的值:" << a << endl; a = a + 1; }while( a < 20 ); return 0; }