码迷,mamicode.com
首页 > Windows程序 > 详细

LC#7

时间:2018-09-05 21:42:58      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:div   一个   public   整数   符号   return   span   value   有符号   

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

class Solution {
    public int reverse(int x) {
        int res=0;
        while(x!=0){
            int a=x%10;
            x/=10;
            if (res > Integer.MAX_VALUE/10 || (res == Integer.MAX_VALUE / 10 && a > 7)) return 0;
            if (res < Integer.MIN_VALUE/10 || (res == Integer.MIN_VALUE / 10 && a < -8)) return 0;
            res=res*10+a;
        }
        return res;
    }
}

 

LC#7

标签:div   一个   public   整数   符号   return   span   value   有符号   

原文地址:https://www.cnblogs.com/otonashi/p/9594134.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!