首页 > 其他 > 详细

HDU-1000 大水题,大坑题!

时间:2015-02-28 22:57:37      阅读:366      评论:0      收藏:0      [点我收藏+]

HDU-1000

A + B Problem

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 453082    Accepted Submission(s): 143595


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
 
 
这是一道很坑的题,很坑,很坑!!(数据不止一组!)
 1 #include<iostream>
 2 using namespace std;
 3 int main()
 4 {
 5    int a,b;
 6    while(cin>>a>>b)
 7    {
 8       cout<<a+b;
 9    }
10    return 0;
11 }


                         -leo lion

HDU-1000 大水题,大坑题!

原文:http://www.cnblogs.com/leo-lion/p/4306269.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!