http://poj.org/problem?id=1000
1 #include 2 3 int main() 4 5 { 6 7 int a,b; 8 9 while(scanf("%d%d",&a,&b)!=EOF) 10 11 { 12 13 printf("%d\n",a+b); 14 15 } 16 17 return 0; 18 19 }
http://poj.org/problem?id=1000
1 #include 2 3 int main() 4 5 { 6 7 int a,b; 8 9 while(scanf("%d%d",&a,&b)!=EOF) 10 11 { 12 13 printf("%d\n",a+b); 14 15 } 16 17 return 0; 18 19 }
转载于:https://www.cnblogs.com/JXNU-WuYeqi/articles/5378676.html