C++数字逆转

Posted didiaoxiaoguai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++数字逆转相关的知识,希望对你有一定的参考价值。

输入: 123
输出: 321
输入: -123
输出: -321

int reverse(int x)
{    
    int res = 0;
    while(x)
    {
         int tmp = x%10;
         x/=10;
         res = res * 10 + tmp; 
    }
        return res;
}

 

以上是关于C++数字逆转的主要内容,如果未能解决你的问题,请参考以下文章