题解 | #反序数#

反序数

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

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

全部评论

相关推荐

牛客868257804号:九个中铁八个中建
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务