#include<stdio.h> int main() { int n; scanf("%d",&n); while(n!=0) { printf("%d\n",n%10); n=n/10; } }
觉得有用的话采纳一下哈