标签:
Problem Description
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 }
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 黑骐
标签:
原文地址:http://www.cnblogs.com/heiqi/p/4277874.html