这篇文章主要讲解了“Java怎么获取最大的数”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Java怎么获取最大的数”吧!
/**
* Created by lifei on 16/6/28.
*
* 从两头依次取数字比较,向中间推进。
*/
public class IsPalindrome {
public static void main(String[] args) {
IsPalindrome ip = new IsPalindrome();
System.out.println(ip.isPalindrome(1221));
}
public boolean isPalindrome(int x) {
if (x < 0)
return false;
//calcu the length of digit
int len = 1;
while (x / len >= 10) { //得到最大的除数
len *= 10;
}
while (x != 0) {
int left = x / len;
int right = x % 10;
if (left != right)
return false;
//remove the head and tail digit
x = (x % len) / 10; //把余数作为下一次遍历对象 x%len去掉高位, 再 /10去低位
len /= 100; //减少len的步长
}
return true;
}
}
感谢各位的阅读,以上就是“Java怎么获取最大的数”的内容了,经过本文的学习后,相信大家对Java怎么获取最大的数这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是天达云,小编将为大家推送更多相关知识点的文章,欢迎关注!