码迷,mamicode.com
首页 > 编程语言 > 详细

逆向排序

时间:2018-08-15 19:34:52      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:stdio.h   main   bsp   nbsp   print   逆向   clu   while   排序   

#include <stdio.h>
int main()
{
    int x;
    scanf("%d",&x);
    int t;
    int ret=0;
do    
    {
    t=x%10;
    ret=ret*10+t;
    x/=10;
    }while(x>0);
    printf("%d",ret);
}

逆向排序

标签:stdio.h   main   bsp   nbsp   print   逆向   clu   while   排序   

原文地址:https://www.cnblogs.com/xderbyy/p/9483384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!