杭电oj1000题
注意要做一个死循环,可以重复输入。
代码如下

# include<stdio.h>

int main()
{
	int a,b;
	while(scanf("%d %d",&a,&b)!=EOF)
	{
		printf("%d\n",a+b);
	}
	return 0;
}

相关文章:

  • 2021-11-13
  • 2021-07-31
  • 2021-04-27
  • 2021-04-26
  • 2021-07-12
  • 2021-09-26
  • 2021-06-26
  • 2021-04-18
猜你喜欢
  • 2021-06-19
  • 2021-12-10
  • 2022-01-10
  • 2021-12-14
  • 2021-04-04
  • 2021-08-19
  • 2021-05-05
相关资源
相似解决方案