文章
2
粉丝
6
获赞
13
访问
493
#include <bits/stdc++.h>
using namespace std;
int n,temp;
int target;
int main() {
map<int ,int> m;
while(cin>>n) {
if(n==0) {
break;
}
for(int i=0; i<n; i++) {
cin>>temp;
m[temp]+=1;
}
cin>>target;
if(m.find(target)!=m.end()) {
cout<<m[target]<<endl;
} else {
cout<<"0"<<endl;
}
&...
登录后发布评论
这个代码可以AC呀,是不是发错代码了