您的位置:首页 > 大数据 > 人工智能

【SWUSTOJ】1001: A+B again!!

2016-05-31 00:08 1816 查看




 1001: A+B again!!

Time Limit:1000MS Memory Limit:65536KB

Total Submit:50 Accepted:23 Page
View:7918

原题链接


Description

Your task is to calculate the sum of some integers.



Input

Input contains multiple test cases, and one case one line. Each case starts with an integer N( 0 < N<=500 ), and then N integers follow in the same line.



Output

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.


Sample
Input
Raw

4 1 2 3 4
5 1 2 3 4 5


Sample
Output
Raw

10
15



Hint

提供一个参考程序:

C语言:
#include"cstdio"  ///也可以使用 < >
int main()
{
int n,x,sum;
while(scanf("%d", &n) != EOF)  /// EOF: end of file  文件结束标志
{
sum = 0;
while(n--)
{
scanf("%d", &x);
sum += x;
}
printf("%d\n", sum);
}
return 0;
}

C++:
#include"iostream"  ///也可以使用 < >
using namespace std;
int main()
{
int n,x,sum;
while(cin >> n)
{
sum = 0;
while(n--)
{
cin >> x;
sum += x;
}
cout << sum << endl;
}
return 0;
}



Source

#include<iostream>
using namespace std;
int main()
{
int n,a;
while(cin>>n)
{int sum=0;
while(n)
{
cin>>a;
sum+=a;
n--;
}
cout<<sum<<endl;
}

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: