Total Submission(s) : 14 Accepted Submission(s) : 9
Problem Description Your task is to Calculate the sum of some integers.
Input Input contains multiple test cases. Each test case contains a integer N, and then N integers follow in the same line. A test case starting with 0 terminates the input and this test case is not to be processed.
Output For each group of input integers you should output their sum in one line, and with one line of output for each line in input.
Sample Input4 1 2 3 4
5 1 2 3 4 5
0
Sample Output10
15
#include<stdio.h>
int main()
{
int n;
while(~scanf("%d",&n))
{
if(n==0)
break;
int sum=0,m;
while(n--)
{
scanf("%d",&m);
sum+=m;
}
printf("%d\n",sum);
}
//printf("%d",sum);
return 0;
}
这次开始我把输出放在循环外面导致死循环(好傻)。。。
本文详细解析了一个使用C语言实现的求和程序,该程序能够处理多组输入数据,计算一组整数的总和,并在每组输入后输出结果。文章通过一个具体的样例展示了如何读取输入数据,计算整数之和并打印结果。

被折叠的 条评论
为什么被折叠?



