Manchester


私信TA

用户名:wenyajie

访问量:332126

签 名:

在历史前进的逻辑中前进,这个逻辑就是人心向背的逻辑

等  级
排  名 1
经  验 65567
参赛次数 1
文章发表 188
年  龄 0
在职情况 学生
学  校 Xiamen University
专  业 计算机科学

  自我简介:

在历史前进的逻辑中前进,这个逻辑就是人心向背的逻辑

解题思路:
输入一对整数数,以空格隔开;

输出它们的和;
默认为测试文件结尾结束;

注意事项:
题目没有说明结束方式,默认为测试文件结尾结束;



参考代码:

#include<stdio.h>
int main()
{
  int a,b;

  while(scanf("%d%d",&a,&b)!=EOF)
  {

   printf("%d\n",a+b);

  }

return 0;
}


 

0.0分

3 人评分

  评论区

#include<stdio.h>
int main()
{
	int a,s;
		while(~scanf("%d,%d",&a,&s)!=EOF);
		{
		printf("%d\n",a+s);
		}
		return 0;
	
 }
2018-11-21 16:11:08
!=EOF啥意思
2018-03-20 22:37:46
  • «
  • 1
  • »