统计同成绩学生人数(C++) 题解:
#include<bits/stdc++.h>
using namespace std;
unordered_map<int, int> st;
int n;
int main()
{
while(cin >> n, n)
{
int x;
for(int i = 0; i < n; i ++)
{
int x;
cin >> x;
st[x] ++;
}
cin >> x;
cout << "ans: " << st[x] << endl;
}
return 0;
}
登录后发布评论
暂无评论,来抢沙发