-->
当前位置:首页 > 题库

PROGRAMMING:Reverse order storage

Luz5年前 (2021-05-10)题库439
Any input n (n < 10) integers no more than 100 are put into an array, and then are stored in reverse order and output.
###Input format:
Enter the n value first, and then enter n integers no more than 100.
###Output format:
Output n integers stored in reverse order, each data occupies 3 columns.
###Input example:
five
1 2 3 4 5
```
###Output example:
5 4 3 2 1
```






answer:If there is no answer, please comment