码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode--Reverse Integer

时间:2014-10-22 00:45:15      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   sp   div   on   log   amp   

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -32

思路:

  很简单的思路,对x对10取余数,把x从低位到高位的数字依次提取出来,再每次对结果乘10加上新取出的个位,最后x=x/10,循环到x为0为止。

public class Solution {
    public int reverse(int x) {
        int result = 0;
        while(x!=0){
            result = result*10+x%10;
            x /=10;
        }
        return result;
        
    }
}

 

LeetCode--Reverse Integer

标签:style   blog   color   io   sp   div   on   log   amp   

原文地址:http://www.cnblogs.com/zhoujunfu/p/4041846.html

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