运用swap函数实现两个数交换
#include
using namespace std;
void Swap(int *x,int *y){
int temp= *x;
*x= *y;
*y=temp;
}
int main(){
int a,b;
cin>>a>>b;
Swap(&a,&b);
cout<<<" "<
#include
using namespace std;
void Swap(int *x,int *y){
int temp= *x;
*x= *y;
*y=temp;
}
int main(){
int a,b;
cin>>a>>b;
Swap(&a,&b);
cout<<<" "<
全部评论
相关推荐