Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C for 循环


for 循环

当您确切知道要循环执行代码块的次数时,请使用 for 循环而不是 while 循环。

语法

for (表达式 1; 表达式 2; 表达式 3) {
  // 要执行的代码块
}

表达式 1 在执行代码块之前执行(一次)。

表达式 2 定义执行代码块的条件。

表达式 3 在代码块执行后执行(每次)。

下面的示例将打印数字 0 到 4。

示例

int i;

for (i = 0; i < 5; i++) {
  printf("%d\n", i);
}
自己试试 »

示例解释

表达式 1 在循环开始之前设置一个变量(int i = 0)。

表达式 2 定义了循环运行的条件(i 必须小于 5)。如果条件为真,循环将重新开始,如果条件为假,循环将结束。

表达式 3 在循环中的代码块执行后每次增加一个值 (i++)。


C 练习

通过练习测试自己

练习

使用 **for 循环** 打印 5 次“Yes”。

 (int i = 0; i < 5; ) {
  printf("Yes\n");
}

开始练习



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.