public int reverse(int x) {
long res = 0;
while (x != 0){
res = res* 10 + x % 10;
x /= 10;
}
if(res >= Integer.MAX_VALUE || res < Integer.MIN_VALUE)
return 0;
return (int)res;
}
原文地址:https://www.cnblogs.com/whyaza/p/10661942.html
时间: 2024-10-31 20:04:44