Problem

1/9

목록: 시작

Theory Click to read/hide

Error

Problem

알파벳 빈도 사전 빌드: 알파벳 순서로 된 단어 목록으로, 각 단어의 오른쪽에 소스 파일에서 해당 단어가 몇 번 나오는지 표시해야 합니다. 텍스트 끝의 기호는 "END!"입니다. 단어가 인쇄되는 순서는 중요하지 않습니다.
  <몸>
입력 출력
부드러운 프렌치번 많이 드세요 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!