直接模拟即可
2024-11-09 09:55:38
发布于:广东
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
string s="";
for (int i=1;i<=n;i++)
s+=to_string(i);
for (int i=0;i<=9;i++)
printf("%d,%d\n",i,count(s.begin(),s.end(),i+'0'));
return 0;
}
这里空空如也
有帮助,赞一个