A+B
Description
Your task is to calculate the sum of some integers.
Input
Input contains multiple test cases, and one case one line. Each case starts with an integer N( 0 < N<=500 ), and then N integers follow in the same line.
Output
For each test case you should output the sum of N integers in one line, and with one line of output for each line in input.
4 1 2 3 4
5 1 2 3 4 5
10
15
Source
#include<iostream> using namespace std; int main() { int n,a; while(cin>>n) {int sum=0; while(n) { cin>>a; sum+=a; n--; } cout<<sum<<endl; } return 0; }
转载请注明出处,谢谢.Q_Q

浙公网安备 33010602011771号