2584: 传值参数函数
[Creator : ]
Description
输入两个整数a和b,交换后输出。
Input
1 2
Output
交换前1 2
交换中2 1
交换后1 2
Sample Input Copy
1 2
Sample Output Copy
交换前1 2
交换中2 1
交换后1 2
HINT
返回值类型 函数名(参数类型 参数名1,参数类型 参数名2......参数类型n 参数名n)
执行语句
return 返回值;
执行语句
return 返回值;