LeetCode #9 回文数
2020-02-03 本文已影响0人
HU兔兔
class Solution {
public:
bool isPalindrome(int x) {
if(x<0){
return false;
}
int i=1;
int j=(int)pow(10,(int)log10(x));
while(i<j){
if((x/i%10)==(x/j%10)){
i=i*10;
j=j/10;
}
else{
return false;
}
}
return true;
}
};