文章

105

粉丝

69

获赞

117

访问

56.5k

头像
统计同成绩学生人数(C++) 题解:
P1329 浙江大学机试题
发布于2024年7月8日 14:49
阅读数 379

#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;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发