//直接用函数转换成字符,双指针判断
public:
/**
*
* @param x int整型
* @return bool布尔型
*/
bool isPalindrome(int x) {
// write code here
string s=to_string(x);
int l=0;
int r=s.length()-1;
while(l<r)
{
if(s[l]!=s[r])return false;
l++;
r--;
}
return true;
}
};