思路:先定义一个map<char,int>m;
然后再在获取的字符串里统计(作者使用的for循环语法是-----for(数据类型 实例化数据:循环范围))
我们可以先查找是否存在该字符   (若不存在,迭代器最后会被赋值为m.end(),若存在会被赋值为字符的位置);
--------------------------------------------------------------------------------------------------------------------------------------------
如果迭代器==m.end()
        则可以将该字符插入
如果迭代器!=end()
        则可以用迭代器.second++来增加字符数
--------------------------------------------------------------------------------------------------------------------------------------------
最后用迭代器输出
--------------------------------------------------------------------------------------------------------------------------------------------
#include <iostream>
// write your code here......
#include<map>
#include<string>
using namespace std;

int main() {

    char str[100] = { 0 };
    cin.getline(str, sizeof(str));

    // write your code here......
    map<char, int>m;
    for (char c : str)
    {
        if (c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z')
        {
            map<char, int>::iterator it = m.find(c);
            if (it == m.end())
                m.insert(make_pair(c, 1));
            else
            {
                it->second++;
            }
        }
    }

    for (map<char, int>::iterator it = m.begin(); it != m.end(); it++)
    {
        cout << it->first << ":" << it->second << endl;
    }

    return 0;
}
----------------------------------------------------------------------------------------------------------------------------------------------