加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
未命名2.cpp 489 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <iostream>
using namespace std;
void swap(int &x,int &y)
{
int t=x;
x=y;
y=t;
}
void swap(double &x,double &y)
{
double t=x;
x=y;
y=t;
}
int main()
{
int a=3, b=5, c=10, d=20;
double e=1.3 ;
double f=3.6;
cout<<"a="<<a<<" b="<<b<<endl;
cout<<"c="<<c<<" d="<<d<<endl;
cout<<"e="<<e<<" f="<<f<<endl;
swap (a,b);
swap (c,d);
swap(e,f);
cout<<"a="<<a<<" b="<<b<<endl;
cout<<"c="<<c<<" d="<<d<<endl;
cout<<"e="<<e<<" f="<<f<<endl;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化