TechoSagar: Sum of Array

Search

Google Alert - jobs

Sum of Array

Given an integer array find sum of it.
Input:
First line contains an integer, the number of test cases 'T' Each test case should contain an integer, size of array 'N' in the first line. In the second line Input the integer elements of the array in a single line separated by space.

Output:
Print the sum in seperate line.

Constraints:
1 <= T <= 30
1 <= N <= 100
1 <= Arr[i] <= 100

Example:
Input
1
4
1 2 3 4
Output:
10
Your Code
#include<iostream>

using namespace std;

int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int i;
int a[100];
for(i=0; i<n; i++)
{
cin>>a[i];
}
int sum=0;
for(i=0; i<n; i++)
{
sum=sum+a[i];
}
cout<<sum<<endl;
}
}

Follow us

Follow Bijendra Kumar on Facebook