PTA乙级 (1042 字符统计 (20分))
Posted jianqiao123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PTA乙级 (1042 字符统计 (20分))相关的知识,希望对你有一定的参考价值。
1042 字符统计 (20分)
https://pintia.cn/problem-sets/994805260223102976/problems/994805280817135616
#include <iostream> #include <cstdio> #include <cmath> #include <algorithm> #include <cstring> #include <string> using namespace std; int main() { char chr[1002]; int arr[26]={0}; cin.getline(chr,1002); for(int i=0;i<strlen(chr);i++) { if(chr[i]>=‘a‘&&chr[i]<=‘z‘) { arr[chr[i]-‘a‘]++; } else if(chr[i]>=‘A‘&&chr[i]<=‘Z‘) { arr[chr[i]-‘A‘]++; } } int max=0; char chr1; for(int i=0;i<26;i++) if(arr[i]>max) { max=arr[i]; chr1=i+‘a‘; } printf("%c %d ",chr1,max); return 0; }
以上是关于PTA乙级 (1042 字符统计 (20分))的主要内容,如果未能解决你的问题,请参考以下文章