728x90
SMALL
https://www.acmicpc.net/problem/4344
123456789101112131415161718192021222324252627282930313233343536 #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
'알고리즘' 카테고리의 다른 글
LeetCode : : 118번 Pascal's Triangle - C++ 풀이 (0) | 2022.01.03 |
---|---|
LeetCode : : 66번 Plus One - C++ 풀이 (0) | 2022.01.01 |
LeetCode : : 455번 Assign Cookies - C++ 풀이 (0) | 2021.12.31 |
프로그래머스 : : 스킬트리 - C++ 풀이 (0) | 2021.12.30 |
백준 : : 2920번 음계 - C++ 풀이 (0) | 2021.12.30 |