标签:lse OLE int else bool 数字 turn 反转 solution
思路:如果是负数,直接判断不是回文.然后取得他的反转值,相等则返回true;
class Solution {
public boolean isPalindrome(int x) {
if(x<0){
return false;
}else {
int huiwen=0;
int num=x;
while(num!=0){
huiwen = huiwen * 10 + num % 10;
num /= 10;
}
return huiwen==x;
}
}
}
标签:lse OLE int else bool 数字 turn 反转 solution
原文地址:https://www.cnblogs.com/caiyideboke/p/11725040.html