码迷,mamicode.com
首页 > 编程语言 > 详细

HDU 1000 A+B Problem C/C++

时间:2015-02-06 20:24:04      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:

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
 
 
C++:
 1 int main() {
 2 
 3     int a, b;
 4 
 5     while (cin >> a >> b) {
 6 
 7         cout << a + b << endl;
 8 
 9     }
10
11     return 0;
12 
13 }

 

 C语言:
1 #include <stdio.h>
2 int main(){
3     int a, b;
4     while (scanf("%d %d", &a, &b) != EOF)
5     {
6         printf("%d\n", a + b);
7     }
8     return 0;
9 }

 


代码仅供参考,如果哪里有不足,欢迎各位指教,我一定会及时进行改进和优化。

如果要转载,请注明出处。

 

2015.2.6 黑骐

HDU 1000 A+B Problem C/C++

标签:

原文地址:http://www.cnblogs.com/heiqi/p/4277874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!