题目描述:传统的A+B题
使用语言:C
代码:
#include <stdio.h> int main(void){ int a,b; while((scanf("%d %d",&a, &b))!=EOF){ printf("%d\n",a+b); } return 0; }
RE:scanf打错括号位置
注记: !=EOF的意思是 控制台输入 ctrl+z结束时,scanf接收到的值
hihoCoder-1000-A+B
原文:http://www.cnblogs.com/hitnoah/p/4230886.html