回文数

回文数

回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
将整型转换成字符串,通过一个循环从两边向中间判断

class Solution {
    public boolean isPalindrome(int x) {
        if(x < 0){
            return false;
        }else if(x < 10){
            return true;
        }else{
            String str = ((Integer)x).toString();
            for(int i = 0;i < str.length() / 2;i++){
                if(str.charAt(i)!=str.charAt(str.length()-1-i)){
                    return false;
                }

            }
        }
        return true;
    }
}