C while 关键字
定义和用法
当指定条件为真时,while
循环会遍历一段代码块。
注意:不要忘记增加条件中使用的变量,否则循环将永远不会结束!
更多示例
do/while
循环是 while
循环的一个变体。此循环将在检查条件是否为真之前先执行一次代码块,然后只要条件为真,它就会重复循环
相关页面
在我们的 C While 循环教程 中阅读更多关于 while 循环的信息。
在我们的 C Do/While 循环教程 中阅读更多关于 do/while 循环的信息。
当指定条件为真时,while
循环会遍历一段代码块。
注意:不要忘记增加条件中使用的变量,否则循环将永远不会结束!
do/while
循环是 while
循环的一个变体。此循环将在检查条件是否为真之前先执行一次代码块,然后只要条件为真,它就会重复循环
在我们的 C While 循环教程 中阅读更多关于 while 循环的信息。
在我们的 C Do/While 循环教程 中阅读更多关于 do/while 循环的信息。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]