码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2019-11-03 16:42:59      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:stream   name   str   学生   main   i++   namespace   res   ons   

#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 分)

标签:stream   name   str   学生   main   i++   namespace   res   ons   

原文地址:https://www.cnblogs.com/tsruixi/p/11787628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!