int reverse(int x)
{
if(x==0)
return 0;
}
else
long m=0;
while(x!=0)
m=m*10+x%10;
x/=10;
return (int)m==m?m:0;
}(七夕快乐,┭┮﹏┭┮)
京公网安备 11010502049817号