c++在编程竞赛中+有十位评委为参赛选手打分分数为5+4+6+8+9+0+1+2+7+3求选手的最后得分(去掉一个最高分和一个最低分后其余八位评委打分的平均值)
时间: 2023-12-17 17:02:59 浏览: 75
以下是c++实现在编程竞赛中求选手得分的例子:
```c++
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
int score[10] = {5, 4, 6, 8, 9, 0, 1, 2, 7, 3};
sort(score, score + 10); // 先排序
int sum = 0;
for (int i = 1; i < 9; i++) { // 去掉一个最高分和一个最低分
sum += score[i];
}
double avg = sum / 8.0; // 求平均值
cout << "选手的最后得分为:" << avg << endl;
return 0;
}
```
阅读全文