我是靠谱客的博主 不安夕阳,最近开发中收集的这篇文章主要介绍A+B for Input-Output Practice (VIII),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

http://acm.hdu.edu.cn/showproblem.php?pid=1096

Problem 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
 
-----------------------------------------

复制代码
 1 #include <iostream>
 2 using namespace std;
 3 int main()
 4 {
 5
int m,n,a,s;
 6
cin >> m;
 7
for (int i=1;i<=m;i++)
 8 
{
 9
cin >> n;
10
s=0;
11
for (int j=1;j<=n;j++)
12 
{
13
cin >> a;
14
s+=a;
15 
}
16
if (i!=m)
17
cout << s << endl << endl;
18
else
19
cout << s << endl;
20 
}
21
return 0;
22 }
复制代码

 

 





本文转自夏雪冬日博客园博客,原文链接:http://www.cnblogs.com/heyonggang/archive/2012/12/11/2813179.html,如需转载请自行联系原作者

最后

以上就是不安夕阳为你收集整理的A+B for Input-Output Practice (VIII)的全部内容,希望文章能够帮你解决A+B for Input-Output Practice (VIII)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部