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

PROGRAMMING:Matrix transpose

Luz5年前 (2021-05-10)题库411
Put a 3 × 3 matrix transpose (row and column Interchange).
###Input format:
Enter nine integers less than 100 in a row, separated by a space.
###Output format:
Output three rows and three columns of two-dimensional array, each data output occupies four columns.
###Input example:
```in
one two three four five six seven eight nine
```
###Output example:
```out
1 4 7
2 5 8
3 6 9
```






answer:If there is no answer, please comment