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

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

A+B for Input-Output Practice (II)
Time Limit: 1000ms, Special Time Limit:2500ms, Memory Limit:32768KB
Total submit users: 539, Accepted users: 508
Problem 10362 : No special judgement
Problem description
  Your task is to Calculate a + b.
Input
  Input contains an integer N in the first line, and then N lines follow. Each line consists of a pair of integers a and b, separated by a space, one pair of integers per line.
Output
  For each pair of input integers a and b you should output the sum of a and b in one line, and with one line of output for each line in input.
Sample Input
21 510 20
Sample Output
630

 

#include 
using namespace std;int main(){ int a,b,n; for(;n>0;n--) { cin >> a >> b; cout << a+b << endl; } return 0;}

 

转载于:https://www.cnblogs.com/gsws/p/3427561.html

你可能感兴趣的文章
iOS开发日记6-跳转appStore评分
查看>>
SpringBoot war包部署到Tomcat服务器
查看>>
对缓存的思考——提高命中率
查看>>
让静态页面显示用户登录状态
查看>>
K-means算法
查看>>
input提示文字;placeholder字体修改
查看>>
MyBatis知识点总结(一)
查看>>
面试题链接记录
查看>>
Android Studio 版本间区别
查看>>
SQL SERVER: 合并相关操作(Union,Except,Intersect)
查看>>
1025-完数
查看>>
汇编第二章知识总结
查看>>
负载均衡简单配置
查看>>
Informix Online数据库日常管理及维护
查看>>
Java反射机制demo(二)—通过Class实例化任意类的对象
查看>>
String和StringBuffer的区别
查看>>
eclipse 添加resources 目录
查看>>
shell 备份mysql
查看>>
ios 常见问题解决
查看>>
Gradle初使用
查看>>