标签:style blog color io sp div on log amp
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -32
思路:
很简单的思路,对x对10取余数,把x从低位到高位的数字依次提取出来,再每次对结果乘10加上新取出的个位,最后x=x/10,循环到x为0为止。
public class Solution { public int reverse(int x) { int result = 0; while(x!=0){ result = result*10+x%10; x /=10; } return result; } }
标签:style blog color io sp div on log amp
原文地址:http://www.cnblogs.com/zhoujunfu/p/4041846.html