...
2023-08-17 14:22:18
发布于:广东
4阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int t[15];
int main(){
string a;
cin >> a;
for(int i = 0;i < a.size();i++) t[a[i] - '0'];
for(int i = 0;i <= 9;i) if(t[i] != 0) cout << i << " = " << t[i] << endl;
return 0;
}
这里空空如也
有帮助,赞一个