题解 | 字母统计

字母统计

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

#include <iostream>
using namespace std;
#include <string>


int main() {

int count[26];
for(int i=0;i<26;i++){
    count[i]=0;
}
string str;
while(getline(cin,str)){
    for(int i=0; i<str.size();i++){
        if(str[i]>='A' && str[i]<='Z'){
            count[str[i]-'A']++;
        }
    }
    for(int i=0; i<26; i++){
        string s;
        s='A'+i;
        cout<<s<<":"<<count[i]<<endl;
    }
}

}

全部评论

相关推荐

等闲_:小红书基本不区分日常和暑期,你是应届实习时间够了就有转正机会,只要部门有hc
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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