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

reverse number

时间:2015-05-09 19:03:41      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:

class Solution {
public:
int reverse(int x) {
  bool negative_flag=false;
if(x==INT_MIN)
  return 0;
if(x<0)
{
  x=-x;
  negative_flag=true;
}
long long result=0;
while(x!=0)
{
  result=result*10+x%10;
  x=x/10;
}
if(result>INT_MAX)
  return 0;
if(negative_flag)
  return -result;
else
  return result;
}
};

reverse number

标签:

原文地址:http://www.cnblogs.com/h-haha/p/4490812.html

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