题意大致是这样的 计算A+B 比如输入: 1 2 3 4 输出: 3 7 我写的代码如下: #include <stdio.h> int main() { int a,b,c,d; while(scanf("%d%d%d%d",&a,&b,&c,&d)!=EOF) { printf("%d\n", a+b); printf("%d", c+d); } return 0; ...