时间限制:1 秒
内存限制:32 兆
特殊判题:否
提交:10803
解决:5662
- 题目描述:
-
读入N名学生的成绩,将获得某一给定分数的学生人数输出。
- 输入:
-
测试输入包含若干测试用例,每个测试用例的格式为第1行:N
第2行:N名学生的成绩,相邻两数字用一个空格间隔。
第3行:给定分数当读到N=0时输入结束。其中N不超过1000,成绩分数为(包含)0到100之间的一个整数。
- 输出:
-
对每个测试用例,将获得给定分数的学生人数输出。
- 样例输入:
-
3 80 60 90 60 2 85 66 0 5 60 75 90 55 75 75 0
- 样例输出:
-
1 0 2
#include <iostream> #include <iostream> #include<stdio.h> #include<string.h> #include<stdlib.h> #include<algorithm> using namespace std; int main() { int n; while(scanf("%d",&n)!=EOF&&n) { int Hash[101]={0}; while(n--) { int x; scanf("%d",&x); Hash[x]++; } int x; scanf("%d",&x); printf("%d\n",Hash[x]); } return 0; }
时间: 2024-10-10 00:48:25