TypeScript while循環(huán)

2019-01-03 16:57 更新

TypeScript While循環(huán)

每次指定的條件求值為true時,while循環(huán)都會執(zhí)行指令。換句話說,循環(huán)在執(zhí)行代碼塊之前評估條件。

語法

while(condition) { 
   // statements if the condition is true 
}

流程圖

示例:while循環(huán)

var num:number = 5; 
var factorial:number = 1; 

while(num >=1) { 
   factorial = factorial * num; 
   num--; 
} 
console.log("The factorial  is "+factorial);  

上面的代碼片段使用while循環(huán)來計算變量num中值的階乘。

在編譯時,它將生成以下JavaScript代碼:

//Generated by typescript 1.8.10
var num = 5;
var factorial = 1;
while (num >= 1) {
   factorial = factorial * num;
   num--;
}
console.log("The factorial  is " + factorial);

它產(chǎn)生以下輸出:

The factorial is 120
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號