Problem

1/9

Listeler: Başlangıç

Theory Click to read/hide

Error

Problem

Alfabetik sıklık sözlüğü oluşturun: her kelimenin sağında alfabetik sıraya göre bir kelime listesi, kaynak dosyada kaç kez geçtiğini göstermelidir. Metnin sonunun işareti "BİTTİ!"'dir. Kelimelerin yazdırılma sırası önemli değildir.
 
Giriş Çıktı
Şu yumuşak Fransız çöreklerinden daha fazla ye SON! 1 Yemek
1 tane daha
bu 1
yumuşak 1
Fransızca 1
rulo 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!