freeCodeCamp/guide/chinese/cplusplus/while-loop/index.md

37 lines
777 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
title: While-loop
localeTitle: undefined
---
只要给定条件为真while循环语句就会重复执行目标语句。
句法: whilecondition{ 声明S; }
while循环的一个关键点是循环可能永远不会运行。 当测试条件并且结果为假时将跳过循环体并且将执行while循环之后的第一个语句。
例:
```C++
#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;
}
```
输出:
价值:10 价值:11 价值:12 价值a13 a的值:14 价值a15 价值:16 价值:17 价值:18 价值:19
### 来源
www.tutorialspoint.com