1079 延迟的回文数 string + 模拟加法

题解

大数加法
回文数比较容易出来,利用reverse函数
麻烦的是怎么把两个string加起来
我看这题是大数加法的升级版,不过大数加法也不难
两个字符串还是利用大数加法的过程,只是在相加的时候要先把加的两个字符转为数字相加,然后在变成字符放到答案里

Code

#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    string s;
    cin >> s;
    int N = 0;
    while (N < 10)
    {
        // st串和s串相加
        string st = s;
        reverse(s.begin(), s.end());
        int r = 0;
        // 反转后的如果和原来的相等 那么就是回文数
        bool f = (s == st);
        if (f)
        {
            cout << st << " is a palindromic number.";
            break;
        }
        int len = s.size();
        string a;
        // 模拟加法
        for (int i = 0; i < len; i++)
        {
            // 先得到两个数字的和
            int x = ((s[i] - '0') + (st[i] - '0') + r);
            // 把模方答案里
            a.push_back((x % 10) + '0');
            // r是进位,初始为0
            r = x / 10;
        }
        if (r != 0)
            a.push_back(r + '0');
        // 注意a现在是反着的,要先反过去
        reverse(a.begin(), a.end());
        cout << st << " + " << s << " = " << a << endl;
        s = a;
        N++;
    }
    if (N == 10)
        cout << "Not found in 10 iterations.";
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值