Leetcode9. 回文数

题目:

给你一个整数 x ,如果 x 是一个回文整数,返回 true ;否则,返回 false 。

回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。

答案:

class Solution {
    public boolean isPalindrome(int x) {
        if(x<0){
            return false;
        }
        int rev=0;
        int copy = x;
        while(copy>0){
            rev*=10;
            rev+=copy%10;
            copy/=10;
        }
        if(x==rev){
            return true;
        }else{
            return false;
        }

    }
}

你可能感兴趣的:(算法,leetcode)