Problem A: 两个数组中对应元素的值的交换
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:2316
Solved:1956
Description
用函数编写程序实现两个数组中对应元素的值的交换。
注意输入的顺序,例如:
输入数组长度
输入第一个数组的元素
输入第二个数组的元素
程序的运行示例1:
6↙
12 3 0 7 8 9↙
22 65 48 77 14 23↙
Output array a:
Output array b:
程序的运行示例2:
4↙
12 66 47 98↙
0 3 4 5↙
Output array a:
Output array b:
Input
输入格式:
"%d"
Output
输出格式:
输出提示信息:"Output array a:"
"Output array b:"
输出格式: "% 5d"
Sample Input Copy
4
1 2 3 4
5 6 2 3
Sample Output Copy
Output array a: 5 6 2 3
Output array b: 1 2 3 4