位置:首页 » 文章/教程分享 » C语言while循环

C语言while循环语句只要给定的条件为真执行目标的声明多次。

语法

C语言while循环的语法是:

while(condition)
{
   statement(s);
}


在这里,语句可以是单个语句或语句块。所述条件可以是任何表达,任何非零值则是true。循环迭代,当条件是true。

当条件为假,则程序控制进到紧接在循环之后的行。

流程图:

C语言while循环

在这里,while循环的关键点是,在循环中当条件测试结果为假可能不会永远运行。循环体将跳过while循环后的第一个语句将被执行。

例子:


#include 
 
int main ()
{
   /* local variable definition */
   int a = 10;

   /* while loop execution */
   while( a < 20 ) { printf("value of a: %d", a); a++; } return 0; }


让我们编译和运行上面的程序,这将产生以下结果:

value of a: 10
value of a: 11
value of a: 12
value of a: 13
value of a: 14
value of a: 15
value of a: 16
value of a: 17
value of a: 18
value of a: 19