leetcode7_整数反转
给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。
示例 1:
输入: 123
输出: 321
示例 2:
输入: -123
输出: -321
示例 3:
输入: 120
输出: 21
思路:
将数字对10取模得到高一位 再来进行判断
//int能表示的范围 2^31-1=2147483647,-2^31=-2147483648
public int reverse(int x) {
long res = 0;
while (x != 0){
res = res * 10 + x % 10;
x = x / 10;
}
//直接返回不合法的
if (res > Integer.MAX_VALUE || res < Integer.MIN_VALUE){
return 0;
}
return (int)res;
}