calculate the sum of all the elements of an array java code example
Example 1: sum of all numbers in array java
int[] a = {10,20,30,40,50};
int sum = IntStream.of(a).sum();
System.out.println("The sum is " + sum);
Example 2: sum of arrays numbers in java
public static void main(String[] args) {
String str = "a1b2c3d4";
char[] arr = str.toCharArray();
System.out.println(Arrays.toString(arr));
int sum = 0;
for(char each : arr ){
if( Character.isDigit(each) ){
sum += Integer.parseInt(""+each); }
}
System.out.println(sum);