欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

正序输出各个位数

程序员文章站 2022-03-22 08:43:02
...

正序输出各个位数

#include <stdio.h>

int main()
{
	int n,t,k;
	int count=1;
	scanf("%d",&n);
	t=n;
	//算出最大除数
	while(t>9){
		t/=10;
		count*=10;
	}
	//依次输出各个位数
	while(count){
		k=n/count;
		printf("%d\n",k);
		n%=count;
		count/=10;
	}
	
	return 0;
}