Problem B: 元素对调(二维数组、双重循环)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:10
Solved:9
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