给你一个整数 x ,如果 x 是一个回文整数,返回 true ;否则,返回 false 。
回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。例如,121 是回文,而 123 不是。
链接:https://leetcode-cn.com/problems/palindrome-number
bool isPalindrome(int x){
int i,j,cnt=0,t=x,n;
if(x<0)
return false;
if(x==0)
return true;
while(t){
cnt++;
t=t/10;
}
int a[cnt];
for(i=0;i<cnt;i++)
{a[i]=x%10;
x=x/10;
}
for(i=0;i<cnt/2;i++)
{
if(a[i]!=a[cnt-i-1])
return false;
}
return true;
}