编写程序:从键盘上输入若干学生的成绩,统计并输出最高成绩和最低成绩,当输入负数时结束输入
时间: 2024-06-15 13:09:19 浏览: 117
编写一个程序用来对学生评定成绩
编写这个程序可以分为以下几个步骤:
1. 创建一个空的列表,用于存储学生的成绩。
2. 使用一个循环,从键盘上逐个输入学生的成绩,并将其添加到列表中。当输入负数时,结束输入。
3. 使用内置函数`max()`和`min()`分别找到列表中的最高成绩和最低成绩。
4. 输出最高成绩和最低成绩。
下面是一个示例代码:
```python
scores = [] # 创建一个空的列表
while True:
score = float(input("请输入学生的成绩(输入负数结束):"))
if score < 0:
break
scores.append(score) # 将成绩添加到列表中
max_score = max(scores) # 找到最高成绩
min_score = min(scores) # 找到最低成绩
print("最高成绩:", max_score)
print("最低成绩:", min_score)
```
阅读全文