迴圈結構 :for 迴圈四要素: 1.初始化條件 2.迴圈條件 3.迴圈體 4.迭代條件 格式: for(初始化條件;迴圈條件;迭代條件){ 迴圈體; } 執行順序 :1 -> 2 -> 3 -> 4 ->2 -> 3 -> 4 ...... 2 說明: 1.初始化條件只執行一次 2.迴圈條件的結果 ...
迴圈結構 :for
迴圈四要素:
1.初始化條件
2.迴圈條件
3.迴圈體
4.迭代條件
格式:
for(初始化條件;迴圈條件;迭代條件){
迴圈體;
}
執行順序 :1 -> 2 -> 3 -> 4 ->2 -> 3 -> 4 ...... 2
說明:
1.初始化條件只執行一次
2.迴圈條件的結果是boolean,如果結果為true則可以繼續下一次迴圈,如果為false則終止迴圈
3.迭代條件必須有,否則會成為死迴圈
public class ForTest{ public static void main(String[] args){ //需求 :輸出50次 小澤老師真漂亮 /* int i = 1; for(System.out.println("ccc"); i <= 50; i++){ System.out.println(i + "小澤老師真漂亮"); } */ //需求 :求100以內的偶數,求偶數的個數,求偶數的總和 int count = 0; //偶數的個數 int sum = 0;//偶數的總和 for(int i = 1; i <= 100; i++){ //判斷是否是偶數 if(i % 2 == 0){ count++; sum += i; System.out.println(i); } } System.out.println(i); System.out.println("偶數的個數有" + count + " 總和為" + sum); } }