题解 | #对称平方数1#

对称平方数1

https://www.nowcoder.com/practice/a84d46d5321f4e20931cb725e6c74fad

#include <bits/stdc++.h>
using namespace std;
int main() {
    for(int i =0;i<=256;i++){
        string s1 = to_string(i*i);
        string s2=s1;
        reverse(s1.begin(),s1.end());
        if(s1 == s2)cout<<i<<endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

伟大的烤冷面被普调:暨大✌🏻就是强
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务