文章

93

粉丝

56

获赞

250

访问

14.9k

头像
数字反转 题解:暴力
P1276 上海交通大学机试题
发布于2025年3月24日 19:59
阅读数 60

#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...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发