首頁
返回
繼續
最後一頁
摘要
圖形
for迴圈
for迴圈可以準確的計算出迴圈的重複次數。
for (設定初始值
;
條件運算式
;
增值) statement;
count=0;
for (i=0; i<=100; i=i+1) count=count+1;