C++ while循环
while 循环语句根据给定的条件,重复执行目标语句,直到条件为假为止。
语法
C++中while循环的语法是 –
while(condition) {
statement(s);
}
此处, 语句(们) 可以是单个语句或一组语句。条件 **可以是任何表达式,而true则是任何非零值。循环在条件为真时进行迭代。
当条件变为假时,程序控制将传递到紧接循环之后的一行。
流程图
关键点是,当循环条件测试结果为false时,循环体将被跳过,并且将执行while循环之后的第一条语句。
示例
#include <iostream>
using namespace std;
int main () {
// Local variable declaration:
int a = 10;
// while loop execution
while( a < 20 ) {
cout << "value of a: " << a << endl;
a++;
}
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: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19