9. 回文数

Posted caifxh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9. 回文数相关的知识,希望对你有一定的参考价值。

水题~。

注意点

需要一个临时变量存储\\(x\\)原始的值。

class Solution {
public:
    bool isPalindrome(int x) {
        if(x < 0) return false;
        long long res = 0;
        int t = x;
        while(x)
        {
            res = res * 10 + x % 10;
            x /= 10;
        }
        return res == t;
    }
};

以上是关于9. 回文数的主要内容,如果未能解决你的问题,请参考以下文章

9.18 判断一个数是否是回文数

Leecode 9. 回文数

leetCode第9题——回文数

代码题(16)— 回文

LeetCode 9. 回文数

leetcode 9