C 语言 for 关键字
定义和用法
for
循环用于重复执行一段代码若干次。
从上面的示例中
- 语句 1 在循环开始前设置一个变量 (int i = 0)。
- 语句 2 定义循环运行的条件 (i 必须小于 5)。如果条件为真,循环将重新开始;如果条件为假,循环将结束。
- 语句 3 在每次代码块执行后增加一个值 (i++)。
相关页面
在我们的 C 语言 For 循环教程 中了解更多关于 For 循环的信息。
for
循环用于重复执行一段代码若干次。
从上面的示例中
在我们的 C 语言 For 循环教程 中了解更多关于 For 循环的信息。
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]