B1038 统计同成绩学生 (20 分)

Posted tsruixi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B1038 统计同成绩学生 (20 分)相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<cstring>
using namespace std;
const int maxn = 10010;
int scores[100] = {0};
int main(){
    int N,K;
    cin >> N;
    for(int i = 0; i < N; i++){
        int score;
        scanf("%d", &score);
        if(score >= 0 && score <= 100){
            scores[score]++;
        }
    }
    cin >> K;
    for(int i = 0; i < K; i++){
        int score;
        scanf("%d", &score);
        printf("%d", scores[score]);
        if(i != K-1) printf(" ");
    }
    return 0; 
} 

以上是关于B1038 统计同成绩学生 (20 分)的主要内容,如果未能解决你的问题,请参考以下文章

1038 统计同成绩学生 (20 分)

1038 统计同成绩学生(20 分)

1038 统计同成绩学生 (20分)

PATB1038 统计同成绩学生(20)(20 分)

PAT乙级1038 统计同成绩学生 (20 分)

P 1038 统计同成绩学生