Sum of Array

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

class SumOfArray{

public static void main(String args[]){


int[] array = {10, 20, 30, 40, 50, 10};
int sum = 0;
for( int num : array) {
sum = sum+num;
}
System.out.println("Sum of array elements is:"+sum);
}
}

Output :
Sum of array elements is:160

You might also like