码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-02-25 12:31:40      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:while   else   最大   strong   clu   循环   alpha   hash   image   

技术图片

#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

标签:while   else   最大   strong   clu   循环   alpha   hash   image   

原文地址:https://www.cnblogs.com/keep23456/p/12360836.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!