C++程序题编程题编写函数实现主程序中变量a和b值的交换

日期:2021-06-16 13:21:09 人气:1

C++程序题编程题编写函数实现主程序中变量a和b值的交换

代码如下
1、
#include<iostream.h>
void swap(int *px,int *py)
{
int p=*px;
*px=*py;
*py=p;
}
void swap(int &px,int &py)
{
int p;
p=px;
px=py;
py=p;
}
v
    A+
热门评论