C++ while 关键字
定义和用法
在 while
循环中,只要指定的条件为 true
,就会循环执行代码块。
注意: 不要忘记增加条件中使用的变量,否则循环将永远不会结束!
更多示例
The do/while
loop is a variant of the while
loop. This loop will execute the code block once, before checking if the condition is true, then it will repeat the loop as long as the condition is true
相关页面
在我们的 C++ While 循环教程 中了解更多关于 while 循环的信息。
在我们的 C++ Do/While 循环教程 中了解更多关于 do/while 循环的信息。