// 整数正序分解
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x;
scanf("%d", &x);
// 13425/10000->1(int一个d)
// 13425%10000->3425(这是x)
// 10000/10-.1000(这是mask)
int mask = 1;
int t = x;
while (t > 9)
{
t /= 10;
mask *= 10;
}
printf("x=%d,mask=%d\n", x, mask);
do
{
int d = x / mask;
printf("%d", d);
if (mask > 9)
printf(" ");
x %= mask;
mask /= 10;
} while (mask > 0);
system("pause");
return 0;
}