D語言while迴圈


while迴圈在D程式設計語言回圈語句多次,只要給定的條件為真時,可執行一個目標語句多次。

語法

在D程式設計語言中的while迴圈的語法是:

while(condition)
{
   statement(s);
}

在這裡,statement(s)可以是單個語句或語句塊。該條件condition可以是任何表示式,並且真正是任何非零值。迴圈疊代,當條件為真。

當條件為假,程式控制傳遞給行緊跟在迴圈後。

流程圖:

while loop in D

在這裡,while迴圈的關鍵點是迴圈可能不會永遠執行。當條件進行測試,結果為假,迴圈體將被跳過,在while迴圈之後的第一個語句將被執行。

例如:

import std.stdio;
 
int main ()
{
   /* local variable definition */
   int a = 10;

   /* while loop execution */
   while( a < 20 )
   {
      writefln("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