How to Get Sum of Elements of an Array using Java

  1. import java.util.Scanner;  
  2.   
  3. class ArraySum   
  4. {  
  5.     public static void main(String args[])   
  6.     {  
  7.         Scanner in = new Scanner(System. in );  
  8.         System.out.println("Enter the number of elements in array:");  
  9.         int elements = ( in .nextInt());  
  10.         int[] array = new int[10];  
  11.         int sum = 0;  
  12.         System.out.println("Enter the elements:");  
  13.         for (int i = 0; i < elements; i++)   
  14.         {  
  15.             array[i] = in .nextInt();  
  16.         }  
  17.         for (int num: array)   
  18.         {  
  19.             sum = sum + num;  
  20.         }  
  21.         System.out.println("Sum of array elements is: " + sum);  
  22.     }  
  23. }  
Thank you, keep learning and sharing