請編寫程序,找出一段給定文字中出現最頻繁的那個英文字母。 輸入格式: 輸入在一行中給出一個長度不超過 1000 的字符串。字符串由 ASCII 碼錶中任意可見字符及空格組成,至少包含 1 個英文字母,以回車結束(回車不算在內)。 輸出格式: 在一行中輸出出現頻率最高的那個英文字母及其出現次數,其間以空格分隔。若是有並列,則輸出按字母序最小的那個字母。統計時不區分大小寫,輸出小寫字母。 輸入樣例: This is a simple TEST. There ARE numbers and other symbols 1&2&3........... 輸出樣例: e 7
// PAT_1042_Count_Vocabulary # include <stdio.h> # include <string.h> int main(void) { int Voc[26]; int num, max; char S[1001]; int i; gets(S); for (i=0; i<26; i++) { Voc[i]=0; } i=0; while (S[i] != '\0') { if (S[i]>='a' && S[i]<='z') { num = S[i] - 'a'; Voc[num]++; } else if (S[i]>='A' && S[i]<='z') { num = S[i] - 'A'; Voc[num]++; } i++; } max = 25; for (i=24; i>=0; i--) { if (Voc[i] >= Voc[max]) { max = i; } } printf("%c %d",'a'+max,Voc[max]); return 0; }
RRspa