你不断求余10就好了
#include <stdio.h> int main() { int n; scanf("%d",&n); while(n>0) { printf("%d ",n%10); n /= 10; } }