题解 | #字母统计#

字母统计

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'};
    char arr[200];
   scanf("%s",arr);
    string buf = arr;
    arr[buf.size()-1] = '\0';
    int count[26] = {0};
    for(int i = 0 ;i < 26 ; ++ i){
        for(int j = 0 ; j < buf.size() ; ++j) {
            if (ASCA[i] == buf[j]) {
                ++count[i];
            } else {
                count[i] = count[i];
            }

        }

    }
    for(int i= 0 ; i < 26; ++i) {
        printf("%c:%d\n", ASCA[i], count[i]);
    }
}

全部评论

相关推荐

点赞 评论 收藏
分享
邮小鼠:粤嵌的项目水的要死 来我们学校带过课程实习 项目名字是车机终端 实际上就是写了了个gui 还是老师把代码发给你你改改的那种
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务