32位整数反转

给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。

需要考虑32位的上限和下限

   static int RerverNum(int x)
        {
            int rev = 0;
            while (x != 0)
            {
                int pop = x % 10;
                x /= 10;
                if (rev > int.MaxValue / 10 || rev == int.MaxValue / 10 && pop > 7) return 0;
                if (rev < int.MinValue / 10 || rev == int.MinValue / 10 && pop < -8) return 0;
                rev = rev * 10 + pop;
            }
            return rev;

        }

数字反转 这个骚操作

while(!=0)
{
        int rev = 0;
         int pop = x % 10;
             x /= 10;
             rev=rev*10+pop;
}

你可能感兴趣的:(算法基础)