Q:

Java program to find sum of array elements

belongs to collection: Java Array Programs

0

Read 'N' array elements, and find sum of all elements using java program.

This program is an example of one dimensional array in java. Here, we are reading N array elements and printing sum of all given array elements.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program to find sum of all elements in java

import java.util.Scanner;

class ExArrayElementSum {
  public static void main(String args[]) {
    // create object of scanner.
    Scanner s = new Scanner(System.in);

    int n, sum = 0;

    // enter number of elements you want.
    System.out.print("Enter the elements you want : ");

    // read entered element and store it in "n".
    n = s.nextInt();
    int a[] = new int[n];

    // enter elements in array.
    System.out.println("Enter the elements:");

    // traverse the array elements one-by-one.
    for (int i = 0; i < n; i++) {
      a[i] = s.nextInt();
    }
    for (int num: a) {
      sum = sum + num;
    }
    // print the sum of all array elements.
    System.out.println("Sum of array elements is :" + sum);
  }
}

Output

First run:
Enter the elements you want : 3
Enter the elements:
55
21
14
Sum of array elements is :90

Second run:
Enter the elements you want : 5
Enter the elements:
12
45
36
25
88
Sum of array elements is :206

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Array Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to sort an array in ascending order... >>