Problem

1/9

リスト: 開始

Theory Click to read/hide

Error

Problem

アルファベット頻度辞書を作成します。アルファベット順の単語のリストで、各単語の右側には、ソース ファイル内でその単語が出現する回数が示されます。文章の終わりの記号は「END!」です。単語が印刷される順序は関係あり
ません。   <本体>
入力 出力
柔らかいフランスパンをもっと食べて終了! 1 個食べる
あと1つ
この1つ
ソフト1
フランス語 1
ロール 1
Write the program below
#include<iostream>
#include<map>
#include<string>
using namespace std;


int main()
{

	map<string, int> mymap;
	string s;
	while (true)
	{              
	}

	map<string, int>::iterator it;

	for (it = mymap.begin(); it != mymap.end(); ++it)
		cout << it->first << " " << it->second << "\n";
	return 0;
}              

     

Program check result

To check the solution of the problem, you need to register or log in!