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

整数逆序

时间:2014-10-27 22:55:25      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   div   on   log   as   

 1 class Solution
 2 {
 3     public: 
 4         
 5         int reverse(int x){
 6         int result=0;
 7             while(x!=0)
 8             {
 9                 result=result*10+x%10;
10                 x/=10;
11             }
12             return result;
13         }
14 };

和判断整数是否是回文数字里面的方法一样。

整数逆序

标签:style   blog   io   color   sp   div   on   log   as   

原文地址:http://www.cnblogs.com/gaoduan/p/4055269.html

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