- 题目描述:
-
求整数a,b的和。
- 输入:
-
测试案例有多行,每行为a,b的值。
- 输出:
-
输出多行,对应a+b的结果。
- 样例输入:
-
1 2 4 5 6 9
- 样例输出:
- 3
- 9
- 15
- 代码实现:
1 #include <stdio.h> 2 int main() 3 { 4 int a, b; 5 while(scanf("%d %d",&a,&b)!=EOF) 6 printf("%d ",a+b); 7 return 0; 8 }
-
弄清要求,再下手敲!
求整数a,b的和。
测试案例有多行,每行为a,b的值。
输出多行,对应a+b的结果。
1 2 4 5 6 9
1 #include <stdio.h> 2 int main() 3 { 4 int a, b; 5 while(scanf("%d %d",&a,&b)!=EOF) 6 printf("%d ",a+b); 7 return 0; 8 }
弄清要求,再下手敲!