#include<stdio.h>
#include<math.h>
int judge(int a)
{
int i=0,temp=a;
for(;;i++)
if((temp=temp/pow(10,i+1))==0)
break;
return i;
}
void main()
{
int i=0,temp=0,a;
printf("请输入数字:");
scanf("%d",&a);
i=judge(a);
int b[i];
for(int j=i;j>0;j--)
{
b[j-1]=a/pow(10,j-1);
}
for(int j=1;j<=i;j++)
temp+=b[j-1]*pow(i-j);
printf("输入的%d的位倒数为%d",a,temp);
}