Reverse Integer
Desicription
Given a 32-bit signed integer, reverse digits of an integer.
Example 1:
代码语言:javascript复制Input: 123
Output: 321
Example 2:
代码语言:javascript复制Input: -123
Output: -321
Example 3:
代码语言:javascript复制Input: 120
Output: 21
Note:
Assume we are dealing with an environment which could only hold integers within the 32-bit signed integer range. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
Solution
代码语言:javascript复制class Solution {
public:
int reverse(int x) {
long long res = 0;
while(x){
res *= 10;
res = x % 10;
x /= 10;
}
if(res < INT_MIN || res > INT_MAX)
return 0;
return res;
}
};