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

LeetCode:Reverse Integer

时间:2014-05-24 01:39:59      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:class   c   code   a   int   string   

Reverse digits of an integer.

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

这道题应该不用详细说了。比较简单。唯一的是要注意特殊值0.


public class Solution {
     public int reverse(int x) {
        StringBuilder sb = new StringBuilder();
        if(x==0)return x;
        else if(x<0)
        {
            sb.append(‘-‘);
        }
        x = Math.abs(x);
        while(x != 0)
        {
            sb.append(x%10);
            x = x/10;
        }
        String result = sb.toString();
        return Integer.parseInt(result);
    }
}

LeetCode:Reverse Integer,布布扣,bubuko.com

LeetCode:Reverse Integer

标签:class   c   code   a   int   string   

原文地址:http://www.cnblogs.com/jessiading/p/3736715.html

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