leetcode Palindrome Number

回文数字,比较简单

class Solution {
public:
    bool isPalindrome(int x) 
    {
        if(x<0)return false;
        int y=x;
        int z=0;
        while(y>0)
        {
            int k=y%10;
            z=z*10+k;
            y=y/10;
        }
        if(z==x)return true;
        else return false;
    }
};

 

posted @ 2013-05-29 14:34  代码改变未来  阅读(144)  评论(0编辑  收藏  举报