#include<iostream>
using namespace std
;
int main(){
int n
;
int i
,j
;
int array
[10] = {0};
cin
>>n
;
for(i
= 1;i
<= n
;i
++){
j
= i
;
while(j
){
array
[j
% 10]++;
j
/= 10;
}
}
for(i
= 0;i
< 10;i
++){
cout
<<array
[i
]<<'\t';
}
return 0;
}
转载请注明原文地址:https://tech.qufami.com/read-7831.html