|
题目地址:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=1001
|
| 输入A、B,求出 A+B
|
| 源代码:
#include <iostream>
using namespace std;
int main(){
int a,b;
while(cin>>a>>b){
cout<<a+b<<endl;
}
return 0;
}
|
|
Language RunTime(ms) RunMemory(KB) C++ 0 188 |

被折叠的 条评论
为什么被折叠?



