如何在Java中找到数组中所有数字的总和?
您可以使用循环找到数组所有元素的总和。创建一个初始值为0的count变量,迭代循环直到数组结束,然后将每个元素添加到count中。
示例
import java.util.Arrays;
import java.util.Scanner;
public class SumOfAllNumbers {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int count = 0;
System.out.println("Enter the size of the array that is to be created:: ");
int size = sc.nextInt();
int[] myArray = new int[size];
System.out.println("Enter the elements of the array ::");
for(int i=0; i<size; i++) {
myArray[i] = sc.nextInt();
count = count+myArray[i];
}
System.out.println("Array is :: "+Arrays.toString(myArray));
System.out.println("Sum of all numbers in the array is :: "+count);
}
}输出结果
Enter the size of the array that is to be created:: 5 Enter the elements of the array :: 45 56 85 78 99 Array is :: [45, 56, 85, 78, 99] Sum of all numbers in the array is :: 363
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短