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

[jeetcode]Reverse Integer

时间:2014-10-19 23:06:43      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   on   

这是一道比较简单的题目,做这道题目的人基本上都能一遍过。

public class Solution {
    public int reverse(int x) {
        int result=0;
        if(x==0){
            result= x;
        }else if(x>0){
            String s=x+"";
            String res="";
            for(int i=0;i<s.length();i++){
                res=s.charAt(i)+res;
            }
            result= Integer.parseInt(res);
        }else if(x<0){
            String s=x+"";
            s=s.substring(1,s.length());
            String res="";
            for(int i=0;i<s.length();i++){
                res=s.charAt(i)+res;
            }
            result= -Integer.parseInt(res);
        }
        return result;
    }
}

 

[jeetcode]Reverse Integer

标签:style   blog   color   io   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/bluedreamviwer/p/4035653.html

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