QN024. Write a program to print the sum of array elements.


1. Objective

To print the sum of all array elements.

2. Theory

In this program we use for each loop to access the value of array. The for each loop is used to traverse array or collection in Java. It is easier to use than simple for loop because we don't need to increment value and subscript notation. It works on element basis not index. It returns element one by one in the defined variable.
Syntax: for each loop
for(dataType variable : arrayName){
//code to be executed
}

3. Source Code
public class Qn024{
public static void main(String[] args){
int sum = 0;
int[] arrayVar = {2,3,5,8};
for(int a: arrayVar)
{
sum += a;
}
System.out.println("Sum of array elements is: " + sum);
}
}
4. Output

Sum of array elements is: 18

5. Conclusion

In this way, I would like to conclude that we can calculate the sum of all array elements using for each loop.