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

本文共 866 字,大约阅读时间需要 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

21 510 20

Sample Output

630
1 #include
2 #include
3 using namespace std; 4 int main() 5 { 6 int n,a,b; 7 int sum; 8 string result; 9 char s[100];10 cin>>n;11 for(int i=0;i
>a;14 cin>>b;15 sum = a+b;16 sprintf(s, "%d",sum);//将整数转为字符串型17 result += s;18 result += "\n";19 }20 cout<

 

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

你可能感兴趣的文章
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
jQuery-强大的jQuery选择器 (详解)[转]
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
多线程讲解
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
java 用反射简单应用,将Object简单转换成map
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>
Linux下c/c++相对路径动态库的生成与使用
查看>>