곽로그
[백준 4344] 평균은 넘겠지 본문
반응형
접근
문제를 따라서 구현하면 쉽게 할 수 있다
주의점
출력을 잘하자. %안붙여서 2번이나 틀렸다.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in=new Scanner(System.in);
int T=in.nextInt();
for(int testCase=0;testCase<T;testCase++) {
int N=in.nextInt();
int[] scores=new int[N];
double sum=0;
for(int i=0;i<scores.length;i++) {
scores[i]=in.nextInt();
sum+=scores[i];
}
double average=sum/N;
int count=0;
for(int i=0;i<scores.length;i++) {
if(scores[i]>average) {
count++;
}
}
double percentage=((double)count/N)*100;
System.out.printf("%.3f",percentage);
System.out.println("%");
}
}
}
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준 4673] 셀프 넘버 (0) | 2019.04.18 |
---|---|
[백준 1110] 더하기 사이클 (0) | 2019.04.18 |
[백준 1546] 평균 (0) | 2019.04.17 |
[백준 10871] X보다 작은 수 (0) | 2019.04.17 |
[백준 10817] 세 수 (0) | 2019.04.16 |
Comments