标签:
求整数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\n",a+b); 7 return 0; 8 }
弄清要求,再下手敲!
标签:
原文地址:http://www.cnblogs.com/hhccdf/p/4330171.html