HDOJ_1235_统计同成绩学生人数
Posted phalq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDOJ_1235_统计同成绩学生人数相关的知识,希望对你有一定的参考价值。
AC代码:
#include <iostream> #include <cstdio> #define Max 1005 using namespace std; int a[Max]; int main(void) { freopen("in.txt","r",stdin); int n; while(scanf("%d",&n)!=EOF&&n) { int temp,count=0; for(int i=1;i<=n;i++) scanf("%d",&a[i]); scanf("%d",&temp); for(int i=1;i<=n;i++) { if(temp==a[i]) count++; } printf("%d ",count); } fclose(stdin); system("pause"); return 0; }
以上是关于HDOJ_1235_统计同成绩学生人数的主要内容,如果未能解决你的问题,请参考以下文章