赞
踩
/************************************************************************* > File Name: ex11.20.cpp > Author: > Mail: > Created Time: Sun 07 Apr 2024 09:42:21 AM CST ************************************************************************/ #include<iostream> #include<iomanip> #include<string> #include<map> #include<vector> using namespace std; int main(){ map<string, size_t> wordCount; string word; cout<<"Enter words: "; while(cin>>word){ ++wordCount.insert({word, 0}).first->second; if(cin.get() == '\n'){ break; } } cout<<"Word Count: "<<endl; for(const auto &w : wordCount){ cout<<"Word: "<<setw(8)<<left<<w.first<<" Count: "<<w.second<<endl; } return 0; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。