leetcode-----7. 整数反转

代码

class Solution {
    public int reverse(int x) {
        int ans = 0;
        while (x != 0) {
            int tmp = x % 10 + ans * 10;
            if ((tmp - x % 10) / 10 != ans) return 0;
            ans = tmp;
            x /= 10;
        }
        return ans; 
    }
}
posted @ 2020-06-02 15:26  景云ⁿ  阅读(69)  评论(0编辑  收藏  举报