用python并写出以下代码:编写程序对标准输入的10个整数置逆序排列并输出。
时间: 2023-05-21 16:02:07 浏览: 197
关于逆序输出数字的程序
Sure, here's the Python code to reverse the order of 10 integers input from standard input:
```
numbers = []
for i in range(10):
num = int(input())
numbers.append(num)
numbers.reverse()
for num in numbers:
print(num)
```
Hope that helps!
阅读全文