【问题描述】输入若干学生(不超过100)某一门成绩(整型),按从高到低顺序输出 【输入形式】第一行输入人数,第二行输入对应个数的成绩 【输出形式】元素之间以空格间隔 【样例输入】5 65 78 76 90 88 【样例输出】90 88 78 76 65
时间: 2023-12-04 13:03:55 浏览: 84
成绩排序,输入成绩按照从大到小的顺序依次排列
```python
n = int(input()) # 输入人数
scores = list(map(int, input().split())) # 输入成绩并转换为整型列表
scores.sort(reverse=True) # 从高到低排序
for score in scores:
print(score, end=' ')
```
阅读全文