文章
93
粉丝
56
获赞
250
访问
14.9k
#include <bits/stdc++.h>
using namespace std;
int main()
{
string m,n;
while(cin>>m>>n)
{
int a=stoi(m);
int b=stoi(n);
int c=a+b;
int ans=c;
string c1;
while(c)
{
c1.push_back(c%10+'0');
c/=10;
}
int d=stoi(c1);//和的反转
reverse(m.begin(),m.end());
reverse(n.begin(),n.end());
int e=stoi(m)+stoi(n);//反转的和
&nbs...
登录后发布评论
暂无评论,来抢沙发