1. 程式人生 > >PAT乙級1042 C++辦法

PAT乙級1042 C++辦法

1042 字元統計 (20 分) 請編寫程式,找出一段給定文字中出現最頻繁的那個英文字母。

輸入格式: 輸入在一行中給出一個長度不超過 1000 的字串。字串由 ASCII 碼錶中任意可見字元及空格組成,至少包含 1 個英文字母,以回車結束(回車不算在內)。

輸出格式: 在一行中輸出出現頻率最高的那個英文字母及其出現次數,其間以空格分隔。如果有並列,則輸出按字母序最小的那個字母。統計時不區分大小寫,輸出小寫字母。

輸入樣例: This is a simple TEST. There ARE numbers and other symbols 1&2&3… 輸出樣例: e 7

#include<iostream>
#include<string>
#include<cctype>
using namespace std;

int main()
{
	string a;
	int cnt[256] = { 0 }, max = 0,t=0;//cnt用於儲存出現的次數
	getline(cin, a);
	for (int i = 0; i < a.size(); i++)
	{
		a[i] = tolower(a[i]);//全部換成小寫
	}
	for (int i = 0; i < a.size(); i++)
	{
		if (islower(a[i]))
			cnt[a[i]]++;
	}
	for (int i = 0; i < 256; i++)
	{
		if (cnt[i] > max)
		{
			max = cnt[i];
			t = i;
		}
	}
	printf("%c %d", t, max);
}