题目描述:
读入N名同学的成绩,将获得某一给定分数的学生人数输出
样例输入:
3
80 60 90
60
样例输出:
1
#include<stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF&&n!=0) { int hash[101]={0}; for(int i=1;i<=n;i++) { int x; scanf("%d",&x); hash[x]++; } int x; scanf("%d",&x); printf("%d\n",hash[x]); } return 0; }
原文:https://www.cnblogs.com/womendouyiyang/p/11666711.html