A+B for Input-Output Practice
A+B for Input-Output Practice
Time Limit: 1000ms Memory limit: 65536K 有疑问?点这里^_^
题目描述
Your task is to calculate the sum of some integers
输入
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
输出
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.
示例输入
3
4 1 2 3 4
5 1 2 3 4 5
3 1 2 3
示例输出
10
15
6
提示
来源
示例程序
#include<stdio.h>
int main()
{
int i,n,a,b,c,sum;
scanf("%d",&n);
for(i=1;i<=n;i++)
{
while(scanf("%d",&a)!=EOF)
{
b=1;
sum=0;
while(b<=a)
{
scanf("%d",&c);
sum+=c;
b++;
}
printf("%d\n\n",sum);
}
}
}
还没有评论,来说两句吧...