class Solution {
public:
/**
*
* @param x int整型
* @return bool布尔型
*/
bool isPalindrome(int x) {
if ( x < 0) {
return false;
}
string s = to_string(x);
cout << s << endl;
int len = s.size();
for (int i = 0; i < len / 2; i++) {
if (s[i] != s[len - i - 1]) {
return false;
}
}
return true;
// write code here
}
};