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

[每日一题]leetcode 7. 整数反转

时间:2021-05-23 23:04:46      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:code   cout   bsp   long   每日一题   rgb   整数   div   rev   

class Solution {
public:

    int reverse(int x) {
       // cout << 1111 << endl;
       long long ret = 0;
       long long y = x;
       int f = 0;
       if(y < 0) f = 1, y = -y;
     //  cout << 1111 << endl;
       while(y)
       {
           int tmp = y % 10;
           ret = ret * 10 + tmp;
           y /= 10;
       } 
       if(f) ret = -ret;
       if(ret < INT_MIN || ret > INT_MAX) return 0;
      // if(f) ret = -ret;
      //cout << 111 << endl;
       return (int)ret;

    }
};

 

[每日一题]leetcode 7. 整数反转

标签:code   cout   bsp   long   每日一题   rgb   整数   div   rev   

原文地址:https://www.cnblogs.com/WTSRUVF/p/14727711.html

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