题解 | 神秘石像的镜像序列
神秘石像的镜像序列
https://www.nowcoder.com/practice/fa34eea974234610b6d3d81790cb2949
a = list(map(int, input().split()))
b = a[:-1]
c = reversed(b)
for i in c:
print(i, end = " ")
神秘石像的镜像序列
https://www.nowcoder.com/practice/fa34eea974234610b6d3d81790cb2949
a = list(map(int, input().split()))
b = a[:-1]
c = reversed(b)
for i in c:
print(i, end = " ")
相关推荐