import java.util.Scanner;
import java.util.Stack;
public class Main {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int lineCount = in.nextInt();
for (int i = 0; i < lineCount; i++) {
int studentC = in.nextInt();
int[] arr = new int[studentC];
double sum = 0;
double average=0;
double per = 0;
int resultC=0;
for (int j = 0; j < studentC; j++) {
arr[j] = in.nextInt();
sum += arr[j];
}
average = (double)sum / studentC;
for (int j = 0; j < studentC; j++) {
if(average < arr[j])
resultC++;
}
System.out.format("%.3f%%%n", 100 * (double)resultC /studentC);
}
}
}
더 많은 백준 코드가 보고 싶다면 ? https://chuinggun.tistory.com/category/%EB%B0%B1%EC%A4%80
'알고리즘풀이 > 백준-자바' 카테고리의 다른 글
[백준/JAVA] 11720번 숫자의 합 N개의 숫자가 공백 없이 쓰여있다. 이 숫자를 모두 합해서 출력하는 프로그램을 작성하시오. (0) | 2020.08.27 |
---|---|
[백준/JAVA] 11654번 아스키코드 알파벳 소문자, 대문자, 숫자 0-9중 하나가 주어졌을 때, 주어진 글자의 아스키 코드값을 출력하는 프로그램을 작성하시오. (0) | 2020.08.27 |
[백준/JAVA] 8958번 OX퀴즈 (0) | 2020.07.23 |
[백준/JAVA] 3052번 나머지 (0) | 2020.07.23 |
[백준/JAVA] 1546번 평균 (0) | 2020.07.23 |
댓글