要求: 判断一个数是否为回文数
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;
}