题目描述
将一个三位数反向输出,例如输入 358,反向输出 853。
输入格式
一个三位数 n。
输出格式
反向输出 n。
循环逐一取余
#include<stdio.h>
main()
{
int n,t;
scanf("%d",&n);
while(n)
{
t=n%10;//从末尾取余
printf("%d",t);
n/=10;//更新数据
}
}
将数字输入为字符形式,因为题目确定为三位数
#include<stdio.h>
main()
{
char a,b,c;
scanf("%c%c%c",&a,&b,&c);
printf("%c%c%c",c,b,a);
}