题解 | #自守数#

自守数

https://www.nowcoder.com/practice/88ddd31618f04514ae3a689e83f3ab8e

#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
using namespace std;

/*
25
5
*/
bool compare_num(string a, string b) {
    reverse(a.begin(), a.end());
    reverse(b.begin(), b.end());
    int n = a.size();
    for (int i = 0; i < n; i++) {
        if (a[i] != b[i]) {
            return false;
        }
    }
    return true;
}

int main() {
    int n;
    cin >> n; 
    int n_2;
    int res = 0;
    for (int i = 0; i <= n; i++) {
        n_2 = pow(i, 2);
        if (compare_num(to_string(i), to_string(n_2))) {
            res++;
        }
           
    }
    cout << res;
}
// 64 位输出请用 printf("%lld")

不聪明

#华为OD机试真题#
全部评论

相关推荐

11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务