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

Reverse digits of an integer.

时间:2014-05-22 16:26:23      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

Reverse digits of an integer.

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

 

bubuko.com,布布扣
 1 class Solution {
 2 public:
 3     int reverse(int x) {
 4         bool isPositive = true;
 5         if(x<0){
 6             isPositive = false;
 7             x = -x;
 8         }
 9         int y = 0;
10         while(x>0){
11            int tmp = x %10;
12            x = x / 10;
13            y = 10 * y +tmp;
14         }
15         if(!isPositive)
16             y = -y;
17          return y;
18     }
19 };
bubuko.com,布布扣

 

Reverse digits of an integer.,布布扣,bubuko.com

Reverse digits of an integer.

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/nnoth/p/3744065.html

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