http://acm.hdu.edu.cn/showproblem.php?pid=1089
很简单的a+b问题不是么?
然而就是不通过
hhh
这就是oj
光看题目要求不看input和output是做不了题目的
下面贴代码
#include<stdio.h>
int main()
{
int a,b;
while(scanf("%d%d",&a,&b)!=EOF)
printf("%d\n",a+b);
return 0;
}
http://acm.hdu.edu.cn/showproblem.php?pid=1089
很简单的a+b问题不是么?
然而就是不通过
hhh
这就是oj
光看题目要求不看input和output是做不了题目的
下面贴代码
#include<stdio.h>
int main()
{
int a,b;
while(scanf("%d%d",&a,&b)!=EOF)
printf("%d\n",a+b);
return 0;
}