hdu 1235 统计同成绩学生人数
Posted jhcelue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 1235 统计同成绩学生人数相关的知识,希望对你有一定的参考价值。
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] mat = new int[1001];// 最多仅仅有1000个,浪费1个 int temp = 0, count = 0; while (sc.hasNext()) { int n = sc.nextInt(); if (n == 0) { return; } for (int i = 1; i <= n; i++) { mat[i] = sc.nextInt(); } temp = sc.nextInt(); count = 0; for (int i = 1; i <= n; i++) { if (temp == mat[i]) { count++; } } System.out.println(count); } } }
以上是关于hdu 1235 统计同成绩学生人数的主要内容,如果未能解决你的问题,请参考以下文章