欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C++:用指针函数交换两个数

程序员文章站 2024-03-07 19:44:21
...
#include<iostream>
void sw(int *p1,int *p2);//定义指针函数
using namespace std;
int main()
{
	int a=0,b=0;
	cin>>a>>b;
	int *p1=&a,*p2=&b;
	sw(p1,p2);
	cout<<a<<' '<<b;
	return 0;
}
void sw(int *p1,int *p2)
{
	int t;
	t=*p1;//*t=*p1错误
	*p1=*p2;
	*p2=t;
}