8 String to Integer (atoi)

Posted cstxx77

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8 String to Integer (atoi)相关的知识,希望对你有一定的参考价值。


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)的主要内容,如果未能解决你的问题,请参考以下文章

8. String to Integer (atoi)

8. 字符串转整数(实现atoi函数) [leetcode 8: String to Integer (atoi)]

8. 字符串转整数(实现atoi函数) [leetcode 8: String to Integer (atoi)]

8. String to Integer (atoi)

8. String to Integer (atoi)

8. String to Integer (atoi)