标签:count include stdio.h ane 个数 mat class nbsp 整数
12345
5 1 2 3 4 5 54321
程序:
#include<stdio.h>
#include<math.h>
int main()
{
int a,c,d,count=0,t;
scanf("%d",&a);
d=c=a;
while(c!=0)
{
count++;
t=c%10;
c=c/10;
}
printf("%d\n",count);
while(a!=0)
{
t=a/(int)pow(10,(count-1));
printf("%d",t);
a=a%(int)pow(10,(count-1));
if(a%10!=0) //判断是否是最后 一位数字,若是,则后无空格
printf(" ");
else
printf("");
count--;
}
printf("\n");
while(d!=0){
t=d%10;
printf("%d",t);
d=d/10;
}
printf("\n");
return 0;
}
给出一个不多于5位的整数,要求 1、求出它是几位数 2、分别输出每一位数字 3、按逆序输出各位数字,例如原数为321,应输出123
标签:count include stdio.h ane 个数 mat class nbsp 整数
原文地址:http://www.cnblogs.com/zady123/p/6537097.html