博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
A+B for Input-Output Practice (VI)
阅读量:6696 次
发布时间:2019-06-25

本文共 787 字,大约阅读时间需要 2 分钟。

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

Problem 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, 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
4 1 2 3 4
5 1 2 3 4 5
Sample Output
10
15
----------------------------------------------------

1 #include 
2 using namespace std; 3 int main() 4 { 5 int m,s,a; 6 while (cin >> m) 7 { 8 s=0; 9 for (int i=1;i<=m;i++)10 {11 cin >> a;12 s+=a;13 }14 cout << s << endl;15 }16 return 0;17 }

 

 

 

转载地址:http://oxpoo.baihongyu.com/

你可能感兴趣的文章
Android开发实践:掌握Camera的预览方向和拍照方向
查看>>
公司网络搭建及×××到公司配置
查看>>
高性能的MySQL(6)查询慢与重构查询
查看>>
从传统运维到云运维演进历程之软件定义存储(一)
查看>>
Linux内核源代码分析-目录
查看>>
Linux系统日志及日志分析
查看>>
网络游戏性能测试的几点想法
查看>>
基于Apache OLTU的OAuth2.0授权解决方案
查看>>
AIX HACMP集群切换测试实际案例解析
查看>>
使用github管理Eclipse分布式项目开发
查看>>
搭建Spring MVC 4开发环境八步走
查看>>
Photoshop绘制植物大战僵尸中的食人花
查看>>
入行后第二份工作的一些感悟
查看>>
Windows PowerShell:(2)基本操作
查看>>
Lync Server 2010标准版系列PART6:启用Lync
查看>>
IT绩效管理消除IT与业务之间的隔阂
查看>>
创建单IP的***网络
查看>>
服务器最小化安装后的优化脚本
查看>>
SCCM2012 R2集成WSUS服务器-4:部署软件更新组
查看>>
关于 Virtual SAN/VSAN 的常见问题解答
查看>>