1038 统计同成绩学生
Posted keep23456
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1038 统计同成绩学生相关的知识,希望对你有一定的参考价值。
水题。
#include<iostream> using namespace std; int hashtable[111]= {0}; //成绩与人数的映射 int main() { int n,score,k; cin>>n; for(int i = 0; i < n; ++i) { scanf("%d",&score); hashtable[score]++; } cin>>k; for(int i = 0; i < k ; ++i) { scanf("%d",&score); if(i > 0) printf(" "); printf("%d",hashtable[score]); } return 0; }
以上是关于1038 统计同成绩学生的主要内容,如果未能解决你的问题,请参考以下文章