文章目录

Problem:
Reverse digits of an integer.

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

1
2
3
4
5
6
7
8
9
10
11
12
public class Solution {
public int reverse(int x) {
int ret=0,temp=x;

do{
ret=ret*10+temp%10;
temp/=10;
}while(temp!=0);

return ret;
}
}

本作品采用[知识共享署名-非商业性使用-相同方式共享 2.5]中国大陆许可协议进行许可,我的博客欢迎复制共享,但在同时,希望保留我的署名权kubiCode,并且,不得用于商业用途。如您有任何疑问或者授权方面的协商,请给我留言

文章目录