15. 某学校举办"校园演讲⽐赛",每位选⼿由 8 位评委打分(分数为 0~10 的整数),且每位评委必须打分。计分规则:去掉⼀个最⾼分,去掉⼀个最低分。如下程序通过键盘先输⼊选⼿编号,然后依次输⼊ 8 个分数,并计算最终得分。下列说法正确的是( )。
```cpp
for (int i = 0; i < 10; i++) {
int id, score;
printf("输入选手编号: ");
scanf("%d", &id);
int max_score = 0, min_score = 100; // 最高分和最低分
int total_score = 0; // 总分
for (int j = 1; j < 9; j++) {
printf("输入选手第%d个成绩:", j);
scanf("%d", &score);
if (max_score < score)
max_score = score;
if (min_score > score)
min_score = score;
total_score += score;
}
total_score = total_score - max_score - min_score;
printf("%d号选手的成绩:\
去掉一个最高分%d,\
去掉一个最低分%d,\
最后成绩是:%d", id, max_score, min_score, total_score);
}
```