码迷,mamicode.com
首页 > 其他好文 > 详细

问题 1090: A+B for Input-Output Practice (VI)

时间:2018-11-22 20:45:51      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:acm   star   integer   sam   cti   rac   探讨   can   sample   

 

输入
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\n",sum);
}
return 0;
}

问题 1090: A+B for Input-Output Practice (VI)

标签:acm   star   integer   sam   cti   rac   探讨   can   sample   

原文地址:https://www.cnblogs.com/Jack1816274408/p/10003240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!