Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

The rest of the statement is not executed after the while statement completes

I type in a sentence on the console,the rest of the statement is not executed after the while statement completes.

map<string, size_t> stringMap;
string str;
while (cin>>str)
{
    ++stringMap[str];
}
for (const auto &w : stringMap)
{
    cout << w.first << "occurs" << w.second << "times" << endl;
}

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

You’ll have to pass EOF. To pass EOF you can use ‘ctrl+z’ in windows and ‘ctrl+d’ in unix systems.

Another solution you can do is. Type specific word to exit. Eg:
while ((cin>>str) != "exit")

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading