1049: 元素对调

Memory Limit:128 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:584 Solved:401

Description

输入4行4列数组,将第2行与第3行元素对调。

Input

输入4行4列数组

Output

输出对调后的4行4列数组

Sample Input Copy

1 2 3 4
5 6 7 8
2 3 4 5
4 5 6 7

Sample Output Copy

1 2 3 4
2 3 4 5
5 6 7 8
4 5 6 7

加入题单

算法标签: