题解 | #字母统计#

字母统计

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

#include<cstdio>
#include<string>

using namespace std ;

int main(){
    int ASCA[26]={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'};
    int count[26] = {0};
    char arr[100];
    scanf("%s",arr);
    string buf = arr;
    int len1 = buf.size();
    for(int i = 0 ; i < len1 ;++i){
        for(int j = 0 ; j < 26 ;++j){
         if(buf[i] == ASCA[j]){
            ++count[j];
        }else{
            continue;
        }
        }
    }
    for(int i = 0 ; i < 26 ;++i){
        printf("%c:%d\n",ASCA[i],count[i]);
    }
}

全部评论

相关推荐

11-11 14:21
西京学院 C++
无敌混子大王:首先一点,不管学校层次怎么样,教育经历放在第一页靠上位置,第一页看不到教育经历,hr基本直接扔掉了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务