题解 | #字母统计#

字母统计

https://www.nowcoder.com/practice/de7bf0945c1c4bd1aa9d49573b831f3c

#include<iostream>
#include<string.h>
#include<bits/stdc++.h>
using namespace std;

int main() {
    string str;
    int cnt[26];
    while (getline(cin, str)) {
        memset(cnt, 0, sizeof(cnt));
        for (int i = 0; i < str.length(); i++) {
            if (str[i] >= 'A' && str[i] <= 'Z') {
                cnt[str[i] - 'A']++;
            }
        }
        for (int i = 0; i < 26; i++) {
            cout << char('A' + i) << ':' << cnt[i] << endl;
        }
    }
}

全部评论

相关推荐

哞客37422655...:兄弟别慌!💪 民办本找实习确实难点,但不是没机会。100+简历才2个面试,可能简历需要优化下: 项目经历写具体点,突出测试用例、bug数量等 技能栏把测试工具/方法论写清楚 可以考虑降低预期,先进小厂积累经验 测试岗相对好进,坚持投!现在才半个月,有人投3个月才上岸的😭 加油,offer在路上了🚀
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务