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

PROGRAMMING:One way linked list 4

Luz5年前 (2021-05-10)题库481
Definition of one-way linked list: input several positive integers (input - 1 is the end flag), and output them in the reverse order of input data.
Input and output example: description in brackets
###Input example:
```in
1 2 3 4 5 6 7 -1
```
###Output example:
```out
7 6 5 4 3 2 1
```






answer:If there is no answer, please comment