class Solution {
public:
bool isPalindrome(int x) {
if(x == 0) return true;
if(x < 0) return false;
double tem = 0;
int y =x;
while(x != 0)
{
tem = tem*10 + (x%10);
x = x/10;
if(tem > INT_MAX) return false;
}
if((int)tem == y ) return true;
return false;
}
};
相关文章
- 01-23Leetcode 9. Palindrome Number(判断回文数字)
- 01-231046-第K回文数
- 01-23C语言解决回文数、字符问题
- 01-23leetcode 9.回文数
- 01-23回文数
- 01-23算法练习题---回文数
- 01-23回文数
- 01-23LeetCode-9回文数
- 01-23LeetCode9 回文数
- 01-23回文数