目录

JAVA 如何计算元素之和


计算数组的和

获取数组元素的总和:

示例

int[] myArray = {1, 5, 10, 25};
int sum = 0;
int i; 

// Loop through the array elements and store the sum in the sum variable
for (i = 0; i < myArray.length; i++) {
  sum += myArray[i];
}

System.out.println("The sum is: " + sum);
亲自试一试 »