[백준 1546] 평균 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
문제에서 주어지는 방식으로 시험 점수를 재조정한 후 새로운 평균을 계산하는 문제입니다.
Code
[ C# ]
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
namespace Solution {
class Program {
static void Main(string[] args) {
var n = int.Parse(Console.ReadLine()!);
var scores = new double[n];
var input = Console.ReadLine()!.Split(' ');
for (int i = 0; i < n; i++)
scores[i] = double.Parse(input[i]);
var maxScore = scores.Max();
double sum = 0.0;
for (int i = 0; i < n; i++) {
scores[i] = scores[i] / maxScore * 100;
sum += scores[i];
}
var avrg = sum / n;
Console.WriteLine($"{avrg:F2}");
}
}
}
[ C++ ]
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
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n; cin >> n;
vector<double> scores(n);
for (int i = 0; i < n; i++)
cin >> scores[i];
double maxScore = *max_element(scores.begin(), scores.end());
double sum = 0;
for (int i = 0; i < n; i++) {
scores[i] = scores[i] / maxScore * 100;
sum += scores[i];
}
double avrg = sum / n;
cout.setf(ios::fixed); cout.precision(2);
cout << avrg << "\n";
return 0;
}