从键盘上输入(采取一次输入一个的方式)若干学生的成绩,计算平均分并输出最高成绩和最低成绩,当输入负数时结束
时间: 2023-11-20 12:54:12 浏览: 111
输入学生的成绩,计算平均分并输出最高成绩和最低成绩,当输入负数时结束。
```python
# Python代码示例
scores = []
while True:
score = float(input("请输入学生成绩:"))
if score < 0:
break
scores.append(score)
average = sum(scores) / len(scores)
max_score = max(scores)
min_score = min(scores)
print("平均分为:{:.2f},最高分为:{:.2f},最低分为:{:.2f}".format(average, max_score, min_score))
```
阅读全文