题解 | #多组数据a+b III#
多组数据a+b III
https://ac.nowcoder.com/acm/problem/22167
#include<stdio.h>
int a,b;
int main(){
while(scanf("%d%d",&a,&b)){
if(!a&&!b) break;
printf("%d\n",a+b);
}
}
题解 文章被收录于专栏
https://ayx.moefox.tech/
多组数据a+b III
https://ac.nowcoder.com/acm/problem/22167
#include<stdio.h>
int a,b;
int main(){
while(scanf("%d%d",&a,&b)){
if(!a&&!b) break;
printf("%d\n",a+b);
}
}
https://ayx.moefox.tech/
相关推荐