1
0
mirror of https://github.com/renbaoshuo/202401-programming-assignments.git synced 2024-12-16 15:44:39 +00:00
202401-programming-assignments/【实践课内】13.指针1/6-1 交换两个整数的值.md

623 B
Raw Permalink Blame History

6-1 交换两个整数的值

函数fun的功能是实现交换两个整数的值。例如给a和b分别输入3和6 输出为a=6 b=3。

函数接口定义:

void fun (int *a,int *b);

其中形参ab 都是用户传入的参数。函数fun的功能是实现交换主函数中a和b的值。

裁判测试程序样例:

#include<stdio.h>
void fun (int *a,int *b);
int main()
{ int a,b;
 scanf("a=%d,b=%d",&a,&b);
 fun(&a,&b);
 printf("a=%d b=%d\n",a,b);
 return 0;
}
/* 请在这里填写答案 */

输入样例:

a=3,b=5

输出样例:

a=5 b=3