Playground/자바문제집

[백준] 4344번

미숫가루설탕많이 2023. 1. 21. 13:34
import java.util.Scanner;

public class Main {
   public static void main(String[] args) {
      Scanner sc = new Scanner(System.in);

      int C = sc.nextInt();  // 테스트 케이스 개수
      int[] arr;

      for (int i = 0; i < C; i++) {

         int sum = 0;   // 학생 점수 합계
         double average = 0;    // 평균 점수
         int count = 0; // 평균 넘는 학생 수
         double percent = 0;    // 평균 넘는 학생들의 비율

         int N = sc.nextInt();  // 학생 수
         arr = new int[N];

         for (int j = 0; j < N; j++) {  // 평균 점수 구하기
            arr[j] = sc.nextInt();
            sum += arr[j];
         }
         average = (double)sum / N;

         for (int k = 0; k < N; k++) {  // 평균 넘는 학생 수 구하기
            if (arr[k] > average)
               count++;
         }
         percent = ((double)count/N) * 100;
         System.out.printf("%.3f%%\n", percent);
      }
   }
}

'Playground > 자바문제집' 카테고리의 다른 글

[백준] 4673번  (0) 2023.01.21
[백준] 15596번  (0) 2023.01.21
[백준] 8958번  (0) 2023.01.21
[백준] 1546번  (0) 2023.01.21
[백준] 3052번  (0) 2023.01.20