在Java中,要計算數列中所有數值的和,可以使用循環遍歷數組或列表,并累加每個元素的值。以下是一個示例代碼:
public class SumOfArrayElements {
public static void main(String[] args) {
int[] array = {1, 2, 3, 4, 5};
int sum = 0;
for (int i = 0; i < array.length; i++) {
sum += array[i];
}
System.out.println("Sum of array elements: " + sum);
}
}
在這個示例中,我們定義了一個整型數組array
,然后使用for
循環遍歷數組中的每個元素,并將其加到變量sum
中。最后,我們輸出計算得到的數組元素的總和。您可以根據實際情況修改數組的值或大小。