用python实现:模拟歌手决赛现场最终成绩的计算过程。输入评委人数,然后每个评委评分为0~100之间,如果不是这个范围,请重新输入评分。最后去掉最高分,去掉最低分,求出该歌手 的得分
时间: 2023-05-31 18:02:16 浏览: 204
模拟决赛现场最终成绩计算.py
5星 · 资源好评率100%
scores = []
num = int(input("请输入评委人数:"))
for i in range(num):
score = float(input("请输入第%d个评委的评分:" % (i+1)))
while score < 0 or score > 100:
score = float(input("评分应在0~100之间,请重新输入第%d个评委的评分:" % (i+1)))
scores.append(score)
scores.sort()
scores = scores[1:-1]
ave_score = sum(scores) / len(scores)
print("该歌手的得分为:%.2f" % ave_score)
阅读全文