输入一个考试成绩的序列,以-1为结束标记。成绩均为整数,且在0到100之间。序列长度在1到1000之间。计算并输出最高、最低和平均成绩。 输入举例:
时间: 2024-06-14 18:05:59 浏览: 287
C语言输入学生成绩,计算并输出这些学生的最低分、最高分、平均分。
以下是计算最高、最低和平均成绩的Python代码:
```python
scores = []
while True:
score = int(input("请输入一个考试成绩(输入-1结束):"))
if score == -1:
break
scores.append(score)
max_score = max(scores)
min_score = min(scores)
avg_score = sum(scores) / len(scores)
print("最高成绩:", max_score)
print("最低成绩:", min_score)
print("平均成绩:", avg_score)
```
阅读全文