刷题第1天(LeetCode 7.整数翻转)
代码实现(c++):
class Solution
{
public:
int reverse(int x)
{
long y=0;
while(x!=0)
{
y=y*10+x%10;
x/=10;
}
if(y>pow(2,31)-1||y<-1*pow(2,31))
return 0;
return y;
}
};