统计数字问题

问题描述:
一本书的页码从自然数1开始顺序编码到自然数n。
书的页码按照通常的习惯编排,每个页码都不包含多余的前导数字0,

Eg:页码6 不使用 006 。数学计数问题要求给定书的总页码n,计算出书的全部页码分别用到了多少次数字0,1,2,3,… ,9.

#include  
#include  
#include  
using namespace std; 
int main()
{ 
	int count[10]; 
	int i,j,k,L; 
	int n,len,m; 
	while(scanf("%d",&n)!=EOF)
	{ 
		m=n; 
		L=ceil(log10(n+1)); 
		for(i=0;i<10;i++) 
			count[i] = 0; 
		for(j=0;j

你可能感兴趣的:(C语言)