Run ID:114050

提交时间:2025-03-19 18:46:57

# 读取三个学生的成绩 students = [] for _ in range(3): scores = list(map(int, input().split())) students.append(scores) # 检查每个学生是否有不及格的课程 for student in students: if any(score < 60 for score in student): # 输出该学生的所有成绩,每个后面加空格 for score in student: print(score, end=' ') print() # 换行