解题思路:
注意事项:
参考代码:
def compare_students(student):
name, age, score = student
return (score, name, age) # 按成绩、姓名、年龄的顺序进行排序
while True:
try:
n = int(input()) # 学生数量
students = []
for _ in range(n):
name, age, score = input().split()
students.append((name, int(age), int(score)))
sorted_students = sorted(students, key=compare_students)
for student in sorted_students:
name, age, score = student
print(name, age, score)
except EOFError:
break
0.0分
1 人评分
点我有惊喜!你懂得!浏览:1166 |
C语言训练-计算1~N之间所有奇数之和 (C语言代码)浏览:757 |
母牛的故事 (C语言代码)浏览:992 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:798 |
WU-输出正反三角形 (C++代码)浏览:1100 |
用筛法求之N内的素数。 (C语言代码)浏览:890 |
幸运数 (C++代码)浏览:1309 |
Cylinder (C语言描述+详细分析)浏览:3376 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:593 |
大家好,我是验题君浏览:604 |