Mon Sep 06 2021

Array Sum

File Name: array-elements-sum.java

import java.io.*;

class arraysum {
	public static void main(String args[ ]) {

		/* Declaration of integer type array and initialize with 10 values */
		int array[ ] = {1,2,3,4,5,6,7,8,9,10};
		int ans = 0;
		for(int i = 0; i < 10; i++)
			ans += array[i];
		System.out.println("Sum of Array: "+ans);
	}
}


/* Output */
Sum of Array: 55
Reference:

We use cookies to improve your experience on our site and to show you personalised advertising. Please read our cookie policy and privacy policy.