字符串
2023-08-07 16:43:21
发布于:浙江
1阅读
0回复
0点赞
用字符串好很多
#include<bits/stdc++.h>
using namespace std;
string s;
int cnt[10];//计数数组
int main()
{
cin>>s;
for(int i=0;i<s.size();i++) //s.size() s的长度
cnt[s[i]-'0']++; //不-'0'会错 也可写-48(ASCII码)
for(int i=0;i<=9;i++)
if(cnt[i]!=0) //为0不输出
cout<<i<<" = "<<cnt[i]<<"\n";
return 0;
}
这里空空如也
有帮助,赞一个