老六题解
2023-08-28 14:26:06
发布于:北京
59阅读
0回复
0点赞
简单
好简单
真简单
特简单
最简单
代码在后边!
#include<bits/stdc++.h>
using namespace std;
const int maxn=1e5+9;
//cin printf
// 谈窗框:
// MessageBox(NULL,"正文","标题",MB_OK);
int a[200];
string s;
int main() {
cin>>s;
for(int i=0; s[i]; i++) {
int k=s[i];
a[k]++;
}
for(int i=0; i<130; i++) {
char k=i;
if(a[i]!=0)
cout<<k<<':'<<a[i]<<endl;
}
return 0;
}
这里空空如也
有帮助,赞一个