首页 > 代码库 > cin 不能直接读入空格,可以用getline(PAT统计字符数)
cin 不能直接读入空格,可以用getline(PAT统计字符数)
#include <iostream>
#include <cstring>
using namespace std;
int main(){
string str;
int a[200] = {0};
// cin >> str;
getline(cin, str);
for(int i = 0; i < str.length(); i++){
if(str[i] >= ‘a‘ && str[i] <= ‘z‘)
a[str[i]]++;
if(str[i] >= ‘A‘ && str[i] <= ‘Z‘)
a[str[i] + 32]++;
}
int max = 90;
for(int i = ‘a‘; i <= ‘z‘; i++)
if(a[max] < a[i])
max = i;
cout << (char)max << " " << a[max];
return 0;
}
cin 不能直接读入空格,可以用getline(PAT统计字符数)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。