A+B for Input-Output Practice (V)

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

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 with one line of output for each line in input.

Sample Input

2
4 1 2 3 4
5 1 2 3 4 5


Sample Output

10
15
--------------------------------------------------

A+B for Input-Output Practice (V)
 1 #include <iostream>
 2 using namespace std;
 3 int main()
 4 {
 5     int m,n,s,a;
 6     cin >> n;
 7     for (int i=1;i<=n;i++)
 8     {
 9         cin >> m;
10         s=0;
11         for (int j=1;j<=m;j++)
12         {
13             cin >> a;
14             s+=a;
15         }
16         cout << s << endl;
17     }
18     return 0;
19 }        
A+B for Input-Output Practice (V)

 





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

上一篇:TOMCAT源码分析(启动框架)


下一篇:PostgreSQL 备份链路sslcompression压缩