首页 > Windows开发 > 详细

LC#7

时间:2018-09-05 21:20:27      阅读:151      评论:0      收藏:0      [点我收藏+]

给定一个 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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!