判断回文数[模板]

要求: 判断一个数是否为回文数

bool isPalindrome(int x) 
    {
        if(x<0) return 0;
        int tmp=x;//x最后会变
        long long res=0;
        while(x)//把每一位扣出来
        {
            res=res*10 + x%10;
            x/=10;
        }
        return res==tmp;
    }
posted @ 2020-07-22 23:11  BorisDimitri  阅读(22)  评论(0编辑  收藏  举报