我用Java刷 leetcode 7. 整数反转

Posted 深林无鹿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我用Java刷 leetcode 7. 整数反转相关的知识,希望对你有一定的参考价值。

这里有leetcode题集分类整理!!!在这里插入图片描述

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

以上是关于我用Java刷 leetcode 7. 整数反转的主要内容,如果未能解决你的问题,请参考以下文章

一起刷LeetCode整数反转

我用java刷 leetcode 13. 罗马数字转整数

我用java刷 leetcode 12. 整数转罗马数字

我用java刷 leetcode 1734. 解码异或后的排列

LeetCode——7 Java之整数反转

一起刷LeetCode整数反转