码迷,mamicode.com
首页 > 其他好文 > 详细

三位数的倒序

时间:2017-10-28 11:17:03      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:pre   scan   scanf   col   倒序输出   std   输出   int   include   

 

 

#include<stdio.h>
void main()

 int a,b,c,x;
 printf("请输入一个三位数:");
 scanf("%d",&x);
 a=x/100;
 b=x/10%10;
 c=x%10;
 x=c*100+b*10+a;
 printf("这三位数的倒序输出为%d",x);
}

/* result------------------------------------------------------------------------------------

 请输入一个三位数:123

 这三位数的倒序输出为321Press any key to continue

-------------------------------------------------------------------------------------------*/

 

三位数的倒序

标签:pre   scan   scanf   col   倒序输出   std   输出   int   include   

原文地址:http://www.cnblogs.com/liuchenchen/p/7746012.html

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