Chinaunix首页 | 论坛 | 博客
  • 博客访问: 75879
  • 博文数量: 20
  • 博客积分: 1297
  • 博客等级: 中尉
  • 技术积分: 230
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-13 15:26
文章分类

全部博文(20)

文章存档

2011年(20)

我的朋友

分类: C/C++

2011-02-22 20:48:43

                                                                             A + B Problem

Problem Description
Calculate A + B.
 

Input
Each line will contain two integers A and B. Process to end of file.
 

Output
For each case, output A + B in one line.
 

Sample Input
1 1
 

Sample Output
2
 

Author
HDOJ
 



程序代码:

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


阅读(759) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~