#includemain(){int i = 12345; //输入想要进行操作的整数int j = 0int a[]for(j=0; i!=0; j++){a[j] = i % 10;i /= 10;}for(; j>=0; j--){printf("%1d\n", a[j]);} }