HDU 1000 A+B Problem C/C++

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 黑骐

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。