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

PROGRAMMING:Inversion of array elements

Luz5年前 (2021-05-10)题库345
Program to read 10 integers into the array, output in positive order, reset the array elements in reverse order, and then output.
###Input example:
```in
42 75 29 66 79 55 53 43 27 41
```
###Output example:
```out
42,75,29,66,79,55,53,43,27,41
41,27,43,53,55,79,66,29,75,42
```







answer:If there is no answer, please comment