A+B for Input-Output Practice (VIII)
Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u
Description
Your task is to calculate the sum of some integers.
Input
Input contains an integer N in the first line, and then N lines follow. Each line starts with a integer M, and then M integers follow in the same line.
Output
For each group of input integers you should output their sum in one line, and you must note that there is a blank line between outputs.
Sample Input
3
4 1 2 3 4
5 1 2 3 4 5
3 1 2 3
Sample Output
10
15
6
#include<stdio.h>
int main()
{
int m;
scanf("%d",&m);
for(int n=0; n<m; n++)
{
int j,i,a[100],s=0;
scanf("%d",&i);
for(j=0; j<i; j++)
scanf("%d",&a[j]);
for(j=0; j<i; j++)
{
s+=a[j];
}
if(n==m-1)
printf("%d\n",s);
else
printf("%d\n\n",s);
}
return 0;
}
本文介绍了一个经典的编程练习题“A+B for Input-Output Practice (VIII)”,任务是计算一组整数的总和。输入包含多个测试案例,每个案例以整数M开始,随后是M个待求和的整数。输出要求每组输入的整数之和,并在不同的输出间插入空白行。
291

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



