💻 C++ 기반
✔️ cin을 통해 실수를 출력할 때는 전체 자리수가 6자리가 넘어가면 더 이상 출력되지 않는다.
✔️ cin<<fixed, cout.precision(자리수)을 이용할 것
#include <iostream>
#include <string>
#include <map>
#include <cmath>
using namespace std;
map<string, double> m;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout<<fixed;
cout.precision(4);
int total = 0;
while (1)
{
string str = "";
getline(cin, str);
if (str == "")
{
break;
}
m[str]++;
total++;
}
for (map<string, double>::iterator iter = m.begin(); iter != m.end(); iter++)
{
cout << iter->first << " " << iter->second / total * 100.0 << '\n';
}
return 0;
}