您的位置:首页 > 其它

LeetCode Reverse Integer

2016-04-06 10:07 330 查看
Reverse digits of an integer.

Example1: x = 123, return 321

Example2: x = -123, return -321

/**
* 翻转整数,注意溢出.
* Created by ustc-lezg on 16/4/6.
*/
public class Solution {

public static void main(String[] args) {
System.out.println(reverse(1534236469));
}

public static int reverse(int x) {
long res = 0;
while (x != 0) {
res = res * 10 + x % 10;
if (res > Integer.MAX_VALUE || res < Integer.MIN_VALUE) {
return 0;
}
x /= 10;
}
return (int)res;
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leetcode