알고리즘

백준 : : 4344번 평균은 넘겠지 - C++ 풀이

green333 2021. 12. 31. 10:07
728x90
SMALL

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

 

4344번: 평균은 넘겠지

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

www.acmicpc.net

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
 
using namespace std;
// char *p_cpp2;
//     p_cpp2 = new char[10]; // char 배열 할당
//     delete []p_cpp2; // char 배열 소멸
 
int main(){
    int test, student;
    int total, count;
    double result;
    cin >> test;
 
 
    for(int i = 0; i < test; i++){
        cin >> student;
        int *score;
        total = 0;
        count = 0;
        score = new int[student];
        
        for(int j = 0; j < student; j++){
            cin >> score[j];
            total += score[j];
        }
        
        for(int k = 0; k < student; k++){
            if(score[k] > (total/student)) count++;
        }
        result = (double)count/student;
        cout << fixed;
        cout.precision(3);
        cout << result*100 << "%" << endl;
        delete []score;
    }
}
cs

 

 

메모리 동적할당 사용에 익숙해지기
LIST