Java中進行累加和非常簡單,可以使用常規的for循環或者增強型for循環。
// 使用for循環實現累加和 int sum = 0; for(int i = 1; i<= 10; i++) { sum += i; } System.out.println("1到10的累加和為:" + sum);
上述代碼中,使用for循環從1開始逐個累加,最終輸出1到10的累加和。
// 使用增強型for循環實現累加和 int[] nums = {1, 2, 3, 4, 5}; int sum = 0; for(int num : nums) { sum += num; } System.out.println("數組元素的累加和為:" + sum);
上述代碼中,先定義一個整型數組,然后使用增強型for循環逐個累加數組元素的值,最終輸出數組元素的累加和。