输入任意一个三位数,将其各位数字反序输出

输入任意一个三位数,将其各位数字反序输出(例如输入123,输出321)。

 

#include<stdio.h>
#include “conio.h”
void main()
{ int x,y,a,b,c ;
printf(“please input a number having three figures\n”);
scanf(“%d”,&x);
a=x/100;
b=x/10%10;
c=x%10;
y=c*100+b*10+a;
printf(“It\&rsquo;s reversed number is %d”,y);
getch();
}

© 版权声明
THE END
喜欢就支持以下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容