본문 바로가기
Problem Solving

1-4. 평균은 넘겠지 (백준 4344)

by tls1107 2021. 7. 7.
728x90
반응형


#include <iostream>
using namespace std;

int main(){
    int nt;
    float sum=0, count=0;
    int n;

    cin >> nt;

    cout << fixed;
    cout.precision(3);

    for(int i = 0 ; i < nt ; i++){
        cin >> n;
        int tmp[n];
        count = 0;

        for(int j = 0 ; j < n ; j++){
            cin >> tmp[j];
            sum += tmp[j];
        }

        for(int j = 0 ; j < n ; j++){
            if( sum/n < tmp[j]) count++;
        }
        
        
        cout << (count/n)*100 << "%" << endl;
        sum = 0;
    }

}

https://www.acmicpc.net/problem/4344

 

4344번: 평균은 넘겠지

대학생 새내기들의 90%는 자신이 반에서 평균은 넘는다고 생각한다. 당신은 그들에게 슬픈 진실을 알려줘야 한다.

www.acmicpc.net

 

728x90
반응형

댓글