python 编写程序,模拟决赛现场最终成绩计算过程。首先输入大于 2 的整数作为评委人数,然后依次输入每个评委的打分,要求每个分数都介于 0~100。最终成绩为去掉一个最高分,去掉一个最低分后剩余分数的平均值。采用 while 循环、for 循环及循环嵌套实现。
时间: 2024-12-01 19:19:11 浏览: 12
模拟决赛现场最终成绩计算.py
5星 · 资源好评率100%
在Python中,你可以编写如下的程序来模拟决赛现场最终成绩的计算过程:
```python
def calculate_final_score(judges):
# 初始化总分和评委人数
total_score = 0
scores = []
# 输入评委打分
while True:
score = int(input("请输入第{}位评委的评分(0-100),输入负数结束输入:".format(len(scores)+1)))
if score < 0:
break
total_score += score
scores.append(score)
# 排序并去除最高分和最低分
sorted_scores = sorted(scores)
if len(sorted_scores) > 2:
sorted_scores = sorted_scores[1:-1] # 去掉最高分和最低分
# 计算平均分
average_score = total_score / (len(sorted_scores) if len(sorted_scores) > 0 else 1)
return average_score
# 调用函数计算最终成绩
final_score = calculate_final_score(int(input("请输入评委人数:")))
print("最终得分是:", final_score)
阅读全文