C++ 代码
class Solution {
public:
bool isPalindrome(int x) {
if(x<0)return false;
if(x>=0&&x<10)return true;
long long temp=0;
int xx=x;
while(x!=0)
{
temp=temp*10+x%10;
x/=10;
}
if(temp==xx)return true;
else
{
return false;
}
}
};