两翻转数的和
#include <iostream>
using namespace std;
int Rev(int n){
int res =0;
while(n>0){
res =res*10+n%10;
n/=10;
}
return res;
}
int main() {
int a,b;
while(scanf("%d %d",&a,&b)!=EOF){
int s =Rev(a)+Rev(b);
cout<<s<<endl;
}
return 0;
}
注意,当题目中有多组输入时要使用
while(scanf("%d %d",&a,&b)!=EOF)
登录后发布评论
暂无评论,来抢沙发