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

LeetCode 7 Reverse Integer

时间:2019-06-03 09:27:32      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:tco   ||   amp   solution   int   pow   class   continue   eve   

题目

c++

class Solution {
public:
    int reverse(int x) {
        
        long long int ans=0;
    
    int tag=0;    
        while(x)
        {
            long long int y =x%10;
            x/=10;

            if(y==0&&tag==0)
                continue;
            else{
                ans=ans*10+y;
  
                tag=1;
            }
        }
        long long int z = (long long int) pow(2,31)-1;
        long long int y = z*-1;
        if(ans > z || ans < y)
        {
            ans=0;
        }

        
        return ans;
    }
};


LeetCode 7 Reverse Integer

标签:tco   ||   amp   solution   int   pow   class   continue   eve   

原文地址:https://www.cnblogs.com/dacc123/p/10965703.html

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