fork download
  1. #include <iostream>
  2. #include<cctype>
  3. #include<map>
  4. using namespace std;
  5.  
  6. int main() {
  7. // your code goes here
  8. string N;
  9. cin>>N;
  10. map<char,int>digit_count;
  11. for(char digit : N){
  12. if(isdigit(digit))
  13. digit_count[digit]++;
  14. }
  15. for(const auto& pair :digit_count){
  16. cout<<pair.first<<":"<<pair.second<<endl;
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 5284KB
stdin
100311
stdout
0:2
1:3
3:1