给定公司N名员工的工龄,要求按工龄增序输出每个工龄段有多少员工。
输入首先给出正整数N(≤10?5??),即员工总人数;随后给出N个整数,即每个员工的工龄,范围在[0, 50]。
按工龄的递增顺序输出每个工龄的员工个数,格式为:“工龄:人数”。每项占一行。如果人数为0则不输出该项。
8
10 2 0 5 7 2 5 2
0:1
2:3
5:2
7:1
10:1
#include <iostream> #include <map> #include <algorithm> using namespace std; int main(){ int n,temp; map<int,int> mapList; cin >> n; for(int i=0;i<n;i++){ scanf("%d",&temp); mapList[temp]++; } for(auto i=mapList.begin();i!=mapList.end();i++){ cout << i->first <<":"<<i->second<<endl; } return 0; }
原文:https://www.cnblogs.com/ichiha/p/14813027.html