Andy's blog

If you always do what you've always done, you'll always get what you've always got.

0%


參考資料:
從零開始學Visual C#2015程式設計


While

1
2
3
4
while(條件)
{
執行條件為true;
}

do/While迴圈

1
2
3
do{
程式敘述
}while(條件運算);