HDOJ_1235_統計同成績學生人數
阿新 • • 發佈:2018-11-30
clas fclose spa 成績 cst return esp lose std
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\n",count); } fclose(stdin); system("pause"); return 0; }
HDOJ_1235_統計同成績學生人數