其他分享
首页 > 其他分享> > 判断是否是回文数

判断是否是回文数

作者:互联网

c++ 代码

public bool isPalindrome(int x){
        //当 x 小于 0 或是 10的整数倍时,不是回文数
        if(x < 0 || (x % 10 == 0 && x != 0)
            return false;

        int res = 0;
        while(x > ans){
            res = res * 10 + x % 10;
            x /= 10;
        }
        //当 x 时有奇数位数的回文数子时, x == res / 10
        return x == ans || x == res/ 10;
}

java代码

public boolean isPalindrome(int x){
        //当 x 小于 0 或是 10的整数倍时,不是回文数
        if(x < 0 || (x % 10 == 0 && x != 0)
            return false;

        int res = 0;
        while(x > ans){
            res = res * 10 + x % 10;
            x /= 10;
        }
        //当 x 时有奇数位数的回文数子时, x == res / 10
        return x == ans || x == res/ 10;
}

标签:10,判断,return,int,res,是否是,ans,回文
来源: https://blog.csdn.net/m0_53824537/article/details/123027190