输入五个学生三门课程的成绩并输出
时间: 2024-12-13 18:28:55 浏览: 9
在编程中,我们可以创建一个简单的二维数组或者列表来存储学生的成绩数据。这里以Python为例,假设我们有五位学生A、B、C、D、E,他们分别参加了数学(Math)、语文(Chinese)和英语(English)三门课程。以下是如何输入和输出他们的成绩:
```python
# 定义一个字典列表来存储每个学生的成绩
students_scores = [
{"name": "A", "math": 85, "chinese": 90, "english": 92},
{"name": "B", "math": 78, "chinese": 86, "english": 88},
{"name": "C", "math": 93, "chinese": 95, "english": 94},
{"name": "D", "math": 80, "chinese": 82, "english": 85},
{"name": "E", "math": 97, "chinese": 96, "english": 98}
]
# 打印每位学生的成绩
for student in students_scores:
print(f"学生 {student['name']} 的成绩如下:")
print(f"数学: {student['math']}")
print(f"语文: {student['chinese']}")
print(f"英语: {student['english']}")
print("\n")
阅读全文