(以“ 分类:整数处理 ==摘要== {{信息题|A + B Problem|http://acm.hust.edu.cn/vjudge/contest/view.action?cid{{=}}68572#problem/A|1|100|输出格式|0|time=201...”为内容创建页面) |
小 (→摘要: 格式) |
||
第3行: | 第3行: | ||
==摘要== | ==摘要== | ||
{{信息题|A + B Problem|http://acm.hust.edu.cn/vjudge/contest/view.action?cid{{=}}68572#problem/A|1|100|输出格式|0|time=2015-02-06 10:26:13}} | {{信息题|A + B Problem|http://acm.hust.edu.cn/vjudge/contest/view.action?cid{{=}}68572#problem/A|1|100|输出格式|0|time=2015-02-06 10:26:13}} | ||
− | * | + | *来自寒假练习:[http://acm.hust.edu.cn/vjudge/contest/view.action?cid=68572 Only a signing tool !] A题 |
*原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1000 | *原题链接:http://acm.hdu.edu.cn/showproblem.php?pid=1000 | ||
+ | |||
==题意== | ==题意== | ||
多行A+B。 | 多行A+B。 |
题目链接 | 难度等级 | 完成状态 | 完成分数 | 最后编辑时间 | 失误原因(初次提交分数) |
---|---|---|---|---|---|
A + B Problem | ★☆☆☆☆ | 答案正确 | 100 | 2015-02-06 10:26:13 | 输出格式(0) |
多行A+B。
while(!cin.eof()) { int a,b; cin>>a>>b; cout<<a+b<<endl; }
while(scanf("%d%d",&a,&b)) printf("%d\n",a+b);
1000.cpp代码已折叠
展开折叠内容
|
---|
#include<iostream> using namespace std; int main() { int a,b; while(cin>>a>>b) { cout<<a+b<<endl; } return 0; } |