刚才在群里看到别人发了一个题目2

Posted 开心果(¦3[▓▓]

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了刚才在群里看到别人发了一个题目2相关的知识,希望对你有一定的参考价值。

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

int hashtable[26] = {0};//统计各个小写字母出现次数
int cnt_alpha = 0,cnt_word = 0,MAX = -1;
int main() {
    string str;
    while(cin>>str) {
        cnt_alpha += str.size();//统计字母个数
        cnt_word++;//统计英文单词个数
        for(int i = 0; i < str.size(); ++i) {//转小写字母,统计各个小写字母出现次数
            str[i] = tolower(str[i]);
            hashtable[str[i]-\'a\']++;
            MAX = max(MAX,hashtable[str[i]-\'a\']);//记录字母最大出现次数
        }
        char ch = getchar();//结束死循环,新技能get 
        if(ch == \'\\n\') break;
    }
    printf("%d\\n",cnt_alpha);//输出英文字母的个数
    printf("%d\\n",cnt_word);//输出单词的个数
    int flag = 0;
    for(int i = 0; i < 26; ++i) {//输出出现次数最多的小写字母
        if(hashtable[i] == MAX) {
            if(flag == 0) {
                printf("%c",i+\'a\');
                flag = 1;
            } else printf(" %c",i+\'a\');
        }
    }
    printf("\\n%d",MAX);//输出最大出现次数
    return 0; 
}

运行结果:

 

 

 终止死循环的方法!

while(cin>>str){

  代码...;

  char ch = getchar();//结束死循环,新技能get 
  if(ch == \'\\n\') break;

}

 

以上是关于刚才在群里看到别人发了一个题目2的主要内容,如果未能解决你的问题,请参考以下文章

在一个前端群里看到的一个练习,获取阿姆斯特朗数

从数组中随机抽取一个值,(别人问我,我自己想到的一个方法)

阿里二面:main 方法可以继承吗?

阿里二面:main 方法可以继承吗?

阿里二面:main 方法可以继承吗?

CVE-2020-1938Tomcat AJP 任意文件读取和包含漏洞分析记录