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

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

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
2
1 5
10 20
Sample Output
6
30
 
---------------------------------------------

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

 

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

你可能感兴趣的文章
database link 使用<转>
查看>>
WPF换肤系列索引
查看>>
surfaceview 与 view 的区别
查看>>
JavaScript document属性和方法
查看>>
svn命令备份
查看>>
Linux下安装中文输入法
查看>>
嵌入式数据库Perst
查看>>
【SQL语法】系列11:IN 操作符
查看>>
二进制转成十六进制
查看>>
【民间图灵奖】读《图灵的秘密》写读后感获图灵水杯
查看>>
python 动态创建类
查看>>
推荐windows下两个科学用python集成套件
查看>>
objective-C Blocks 讲解
查看>>
EditPlus3.5+绿色+汉化+免安裝特别版
查看>>
java中的IO操作总结(四)
查看>>
【DLL】win7下注册dll
查看>>
为什么程序员的价值总是被严重的低估?
查看>>
design principle:模拟 android Button 控件点击事件
查看>>
SQL Server误区30日谈-Day21-数据损坏可以通过重启SQL Server来修复
查看>>
深入了解Hive Index具体实现
查看>>