A+B for Input-Output Practice (VIII)

简介: http://acm.hdu.edu.cn/showproblem.php?pid=1096 Problem DescriptionYour task is to calculate the sum of some integers.

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 }

 

 

 

img_e00999465d1c2c1b02df587a3ec9c13d.jpg
微信公众号: 猿人谷
如果您认为阅读这篇博客让您有些收获,不妨点击一下右下角的【推荐】
如果您希望与我交流互动,欢迎关注微信公众号
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。

目录
相关文章
A+B for Input-Output Practice
A+B for Input-Output Practice
HDOJ 1096 A+B for Input-Output Practice (VIII)
HDOJ 1096 A+B for Input-Output Practice (VIII)
112 0
HDOJ 1095 A+B for Input-Output Practice (VII)
HDOJ 1095 A+B for Input-Output Practice (VII)
116 0
HDOJ 1093 A+B for Input-Output Practice (V)
HDOJ 1093 A+B for Input-Output Practice (V)
102 0
HDOJ 1090 A+B for Input-Output Practice (II)
HDOJ 1090 A+B for Input-Output Practice (II)
109 0
HDOJ 1089 A+B for Input-Output Practice (I)
HDOJ 1089 A+B for Input-Output Practice (I)
119 0
HDOJ 1091 A+B for Input-Output Practice (III)
HDOJ 1091 A+B for Input-Output Practice (III)
103 0

热门文章

最新文章