要求输入任意一整数,把这个整数以逆序的方式输出。
1 输入:123
2 输出:321
我们可以发现,输入数和输出数的位数相同,输入数的1在输出数中作为个位数 输出。
也就是说整数逆序本质上是数位的颠倒
所以我们只需要判断输入数是几位数,然后获取输入数各数位的值,拼凑出输出数就可以了。
以三位数为例:
#include<stdio.h>
int main()
{
int x;
int units,tens,hundreds;
int result;
printf("请输入一个三位正整数:");
scanf("%d",&x);
//获取各位数的值
hundreds =x/100;
tens =x%100/10;
units =x%10;
//拼凑结果
result = units*100+tens*10+hundreds;
printf("%d",result);
进阶版:利用循环逐一输出其各数位
#include<stdio.h>
int main()
{
int x;
int result = 0;
printf("请输入一个整数:");
scanf("%d",&x);
while(x!=0)
{
result = result*10+x%10;
x =x/10;
}
printf("%d",result);
printf("\n");
return 0;
}
测试结果:
输入:501,输出:105
输入:025,输出:52
输入:520,输出:25文章来源:https://www.toymoban.com/news/detail-739415.html
往前走吧,答案都在路上。文章来源地址https://www.toymoban.com/news/detail-739415.html
到了这里,关于逆序输出整数【C语言】的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!