翻转数的和 题解:用函数的简单解法
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
int main(){
string a,b;
int c,d;
while(cin>>a>>b){
reverse(a.begin(),a.end());
reverse(b.begin(),b.end());
cout<<atoi(a.c_str())+atoi(b.c_str())<<endl;
}
}
登录后发布评论
暂无评论,来抢沙发