查找班级最高分和最低分code代码
时间: 2024-09-26 17:11:24 浏览: 85
在编程中,查找班级最高分和最低分通常涉及到数据结构和算法的操作,这里假设我们有一个包含学生分数的列表或数组,每个元素代表一个学生的分数。以下是使用Python的一个简单示例:
```python
# 假设 class_scores 是一个包含班级所有学生分数的列表
class_scores = [85, 90, 95, 78, 88, 100]
# 定义一个函数来找到最高分和最低分
def find_min_max(scores):
min_score = scores[0]
max_score = scores[0]
for score in scores:
if score > max_score:
max_score = score
elif score < min_score:
min_score = score
return min_score, max_score
# 调用函数并打印结果
min_score, max_score = find_min_max(class_scores)
print("班级最低分:", min_score)
print("班级最高分:", max_score)
阅读全文