编写程序,从键盘输入5个学生的学生信息,包括学号、姓名、3门课程的成绩,计算3门课的平均成绩,将全部信息以二进制方式保存到文件中。
时间: 2023-09-18 22:06:29 浏览: 178
C语言程序设计-输入2个学生3门课的成绩,计算学生成绩平均分,课程平均分和最高分.
5星 · 资源好评率100%
### 回答1:
以下是Python的实现:
```python
import struct
# 定义学生类
class Student:
def __init__(self, id, name, score1, score2, score3):
self.id = id
self.name = name
self.score1 = score1
self.score2 = score2
self.score3 = score3
def calc_avg(self):
return (self.score1 + self.score2 + self.score3) / 3
# 读取学生信息
students = []
for i in range(5):
id = int(input("请输入学号:"))
name = input("请输入姓名:")
score1 = float(input("请输入第一门课成绩:"))
score2 = float(input("请输入第二门课成绩:"))
score3 = float(input("请输入第三门课成绩:"))
student = Student(id, name, score1, score2, score3)
students.append(student)
# 将学生信息写入文件
with open("students.bin", "wb") as f:
for student in students:
# 将字符串转换为二进制
id_bytes = student.id.to_bytes(4, byteorder="big")
name_bytes = student.name.encode("utf-8")
score1_bytes = struct.pack("f", student.score1)
score2_bytes = struct.pack("f", student.score2)
score3_bytes = struct.pack("f", student.score3)
# 将数据写入文件
f.write(id_bytes)
f.write(name_bytes)
f.write(score1_bytes)
f.write(score2_bytes)
f.write(score3_bytes)
```
程序中,定义了一个`Student`类来保存学生信息,其中包括学号、姓名、3门课程的成绩,还有一个计算平均成绩的方法`calc_avg()`。
程序首先从键盘输入5个学生的信息,然后将每个学生的信息以二进制方式写入文件。在写入文件时,使用了Python的`struct`模块将数字转换为二进制格式,以及将字符串转换为二进制格式。在写入文件时,先将学号转换为4个字节的二进制格式,然后将姓名转换为二进制格式,最后将3门成绩转换为4个字节的二进制格式。最终,整个学生信息以二进制格式保存到了文件`students.bin`中。
### 回答2:
编写Python程序实现上述功能:
```
class Student:
def __init__(self, student_id, name, scores):
self.student_id = student_id
self.name = name
self.scores = scores
def average_score(self):
return sum(self.scores) / len(self.scores)
def main():
students = []
for i in range(5):
student_id = input("请输入学生学号:")
name = input("请输入学生姓名:")
scores = []
for j in range(3):
score = float(input("请输入第{}门课的成绩:".format(j + 1)))
scores.append(score)
student = Student(student_id, name, scores)
students.append(student)
with open('students_info.bin', 'wb') as file:
for student in students:
student_info = student.student_id + '\t' + student.name + '\t'
for score in student.scores:
student_info += str(score) + '\t'
student_info += '\n'
file.write(student_info.encode())
if __name__ == "__main__":
main()
```
该程序定义了一个Student类,用于存储每个学生的学号、姓名和成绩信息。在main函数中,通过循环从键盘读入5个学生的信息,并将其存储到一个列表中。然后,程序使用二进制模式打开一个文件,并将每个学生的信息以二进制方式写入文件中。
学生信息存储的格式为:学号+姓名+三门课的成绩,以制表符分隔。之后每个学生信息占一行。
运行程序后,将会从键盘依次输入5个学生的学号、姓名和3门课的成绩,然后将其保存到名为"students_info.bin"的文件中。
### 回答3:
编写程序,实现从键盘输入5个学生的学生信息,并计算出3门课程的平均成绩,最后将全部信息以二进制方式保存到文件中。
首先,创建一个学生类,包括学号、姓名以及3门课的成绩属性和对应的setter和getter方法。
接下来,创建一个主函数。在主函数中,创建一个空的学生列表用于存储输入的学生信息。
然后使用for循环来循环输入5个学生的信息。对于每个学生,首先使用input函数分别从键盘输入学号、姓名以及3门课程的成绩,并将输入的成绩转换为整数类型。
然后,根据学号、姓名和输入的3门课程成绩创建一个学生对象,并将其添加到学生列表中。
接下来,对于每个学生对象,计算其3门课程的平均成绩,并将结果存储在学生对象的平均成绩属性中。
最后,使用with语句创建一个文件对象,并打开一个二进制文件。然后,使用pickle模块的dump函数将学生列表以二进制方式保存到文件中。
以下是完整的代码示例:
```python
import pickle
class Student:
def __init__(self, student_id, name, score1, score2, score3):
self.student_id = student_id
self.name = name
self.score1 = score1
self.score2 = score2
self.score3 = score3
def get_average_score(self):
return (self.score1 + self.score2 + self.score3) / 3
student_list = []
for i in range(5):
print(f"请输入第{i+1}个学生的信息:")
student_id = input("请输入学号:")
name = input("请输入姓名:")
score1 = int(input("请输入第一门课程的成绩:"))
score2 = int(input("请输入第二门课程的成绩:"))
score3 = int(input("请输入第三门课程的成绩:"))
student = Student(student_id, name, score1, score2, score3)
student_list.append(student)
for student in student_list:
average_score = student.get_average_score()
student.average_score = average_score
with open("students.bin", "wb") as file:
pickle.dump(student_list, file)
```
运行程序后,依次输入5个学生的学号、姓名和3门课程的成绩,程序会自动计算平均成绩,并将全部信息以二进制方式保存到名为"students.bin"的文件中。
阅读全文