从键盘输入10个学生的百分制成绩存放到数组中,并倒序输出
时间: 2024-04-29 18:26:22 浏览: 130
用数组输出学生成绩信息
好的,你可以这样做:
```python
# 从键盘输入10个学生的成绩存放到数组中
scores = []
for i in range(10):
score = int(input(f"请输入第{i+1}个学生的成绩:"))
scores.append(score)
# 倒序输出成绩
print("成绩倒序为:")
for score in reversed(scores):
print(score)
```
注意:这是一个 Python 的例子,你可以根据你的需要选择适合你的编程语言,但是思路是一样的。
阅读全文