整数反转:
例如 x=123 rev=321 不能使用long long 类型的变量,并且要保证数不能在int型当中溢出。 public static int intereverse(int x ){
int rev = 0;
while (x!=0){
int pop = x%10;//从小找到大
x/=10;
if (rev > Integer.MAX_VALUE/10 || (rev == Integer.MAX_VALUE / 10 && pop > 7)) return 0;//判断是否超出int型的界限 2的31次方 − 1
if (rev < Integer.MIN_VALUE/10 || (rev == Integer.MIN_VALUE / 10 && pop < -8)) return 0;//判断是否超出int型的界限
rev = rev * 10 + pop;//从大垒到小 并且
}
return rev;
}