码迷,mamicode.com
首页 > 其他好文 > 详细

8 String to Integer (atoi)

时间:2020-06-07 15:11:13      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:print   ret   div   void   ring   result   atoi   lin   bsp   


public class Palindrome_Number9 {
public static boolean isPalindrome(int x) {
if(x<0){
return false;
}
String result=new Integer(x).toString();


for(int i=result.length()/2-1;i>=0;i--){
if(result.charAt(i)!=result.charAt(result.length()-i-1)){
return false;
}
}

return true;

/*
public boolean isPalindrome(int x) {
if (x < 0) return false;
if (x < 10) return true;
int y = x, result = 0;
while (y > 0){
result = result*10 + y % 10;
y = y/10;
}
return result == x;
}
*/
}

public static void main(String[] args) {

System.out.println(isPalindrome(1) );

}
}
 

 

8 String to Integer (atoi)

标签:print   ret   div   void   ring   result   atoi   lin   bsp   

原文地址:https://www.cnblogs.com/cstxx77/p/13060471.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!