博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
武汉科技大学ACM :1006: A+B for Input-Output Practice (VI)
阅读量:5830 次
发布时间:2019-06-18

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

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 45 1 2 3 4 5

Sample Output

1015
#include 
using namespace std; int main() { int N,i; while(cin >> N) { int sum = 0; while (N--) { cin >> i; sum += i; } cout << sum << endl; } return 0; }

 

转载于:https://www.cnblogs.com/liuwt365/p/4147457.html

你可能感兴趣的文章
+++++++子域授权与编译安装(一)
查看>>
asp.net怎样在URL中使用中文、空格、特殊字符
查看>>
路由器发布服务器
查看>>
实现跨交换机VLAN间的通信
查看>>
python例子
查看>>
环境变量(总结)
查看>>
ios之UILabel
查看>>
Java基础之String,StringBuilder,StringBuffer
查看>>
1月9日学习内容整理:爬虫基本原理
查看>>
安卓中数据库的搭建与使用
查看>>
AT3908 Two Integers
查看>>
C++ 0X 新特性实例(比较常用的) (转)
查看>>
node生成自定义命令(yargs/commander)
查看>>
各种非算法模板
查看>>
.NET 设计规范--.NET约定、惯用法与模式-2.框架设计基础
查看>>
win7 64位+Oracle 11g 64位下使用 PL/SQL Developer 的解决办法
查看>>
BZOJ1997:[HNOI2010]PLANAR——题解
查看>>
使用Unity3D引擎开发赛车游戏
查看>>
HTML5新手入门指南
查看>>
opennebula 开发记录
查看>>