问题 D: A+B 输入输出练习IV——你的任务是计算若干整数的和。

题目描述:
你的任务是计算若干整数的和。

输入:
每行的第一个数N,表示本行后面有N个数。
如果N=0时,表示输入结束,且这一行不要计算。

输出:
对于每一行数据需要在相应的行输出和。

样例输入:

4 1 2 3 4
5 1 2 3 4 5
0 

样例输出:

10
15

代码:

#include 
using namespace std;
int main(){
	#ifdef ONLINE_JUDGE
	#else
		freopen("in.txt","r",stdin);
	#endif
	int n,a,sum=0;
	while(scanf("%d",&n)){
		if(n==0) break;
		while(n--){
			scanf("%d",&a);
			sum+=a;
		}
		printf("%d\n",sum);
		sum=0;
	}
	return 0;
} 

你可能感兴趣的:(问题 D: A+B 输入输出练习IV——你的任务是计算若干整数的和。)