c语言输入一个不多于4位的正整数,求出它的几位数,逆序打印出各位数字 用if else做
2个回答
展开全部
#include<stdio.h>
#include<math.h>
void main()
{ int x,th,hu,te,ge,w;
printf("请输入一个小10000的正整数x:\n");
scanf("%d",&x);
if(x>999) w=4;
else if(x>99) w=3;
else if(x>9) w=2;
else w=1;
th=x/1000;
hu=(x-th*1000)/100;
te=(x-(th*1000+hu*100))/10;
ge=x-(th*1000+hu*100+te*10);
printf("该数为%d位数。\n",w);
printf("逆序打印出各位数字\n");
printf("%d %d %d %d\n",ge,te,hu,th);
}
运行通过。
展开全部
#include<stdio.h>
int main()
{int n,x;
scanf("%d",&x);
if(x<10)n=1;
else if(x<100)n=2;
else if(n<1000)n=3;
else n=4;
printf("%d\n",n);
for(;x;x/=10)
printf("%d ",x%10);
return 0;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询