LeetCode之反转整数

今天看了一道LeetCode的反转整数的题,将解题的代码奉上。

给定一个 32 位有符号整数,将整数中的数字进行反转。

示例 1:

输入: 123
输出: 321

 示例 2:

输入: -123
输出: -321

示例 3:

输入: 120
输出: 21

注意:

假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−231,  231 − 1]。根据这个假设,如果反转后的整数溢出,则返回 0。

import java.util.Scanner;

public class Solution {
    public static  int reverse(int number){
        int numCount=0;
        while(number!=0){
            int pop =number%10;
            number=number/10;
            if (numCount > Integer.MAX_VALUE/10 || (numCount == Integer.MAX_VALUE / 10 && pop > 7)) return 0;
            if (numCount < Integer.MIN_VALUE/10 || (numCount == Integer.MIN_VALUE / 10 && pop < -8)) return 0;
            numCount=numCount*10+pop;
    
        }
        
        return numCount;
        
    }
    
    public static void main(String[] args){
        
        Scanner scanner =new Scanner(System.in);
        int number=scanner.nextInt();
        System.out.println(reverse(number));
        
    }

}
 

猜你喜欢

转载自blog.csdn.net/masterpieve/article/details/81586879