https://www.acmicpc.net/problem/1546
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int *score = new int[n];
for (int i = 0; i < n; i++)
cin >> score[i];
int best;
best = score[0];
for (int i = 0; i < n - 1; i++)
{
if (best < score[i + 1])
best = score[i + 1];
}
float sum = 0;
for (int i = 0; i < n; i++)
sum = sum + (float)score[i] / best *100;
cout << sum / n << endl;
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 2292번 : 벌집 (0) | 2019.02.18 |
---|---|
[C++] 백준 1924번 : 2007년 (0) | 2019.02.18 |
[C++] 백준 1476번 : 날짜 계산 (0) | 2019.02.18 |
[C++] 백준 1475번 : 방 번호 (0) | 2019.02.18 |
[C++] 백준 1237번 : 정ㅋ벅ㅋ (0) | 2019.02.18 |