问题 1090: A+B for Input-Output Practice (VI)
Posted jack1816274408
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了问题 1090: A+B for Input-Output Practice (VI)相关的知识,希望对你有一定的参考价值。
输入
Input contains multiple test cases, and one case one line. Each case starts with an integer N, and then N integers follow in the same line.
输出
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
ACM大赛 大家一起探讨
#include<stdio.h>
int main()
{
int N;
int sum;
int temp;
while(scanf("%d",&N)==1)
{
//注意让sum初始化为0
sum=0;
while(N--){
scanf("%d",&temp);
sum+=temp;
}
printf("%d
",sum);
}
return 0;
}
以上是关于问题 1090: A+B for Input-Output Practice (VI)的主要内容,如果未能解决你的问题,请参考以下文章
HDU 1090 A+B for Input-Output Practice (II)
Hdu 1090 A+B for Input-Output Practice (II)