输入一串数字,输出分开的数字。例如123,输出1 2 3
#include <stdio.h>
#include <math.h>
int main()
{
int a, i, c, b, t;
scanf("%d", &a);
t = a;
i=0;
while (t > 0)
{
t = t / 10;//判断位数,我淦忒酿
i++;
}
for(b=i-1;b>=0;b--)
{
c = a / (int) pow(10, (float) b);
printf("%d ", c);
a=a-c*(int) pow(10, (float) b);
}
printf("\n");
}