文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>数字交换

数字交换

时间:2010-07-19  来源:静止的流水

#include "stdafx.h"
#include<iostream>
#include<string>
#include<math.h>
#define swap(a,b) a = a+b;b=a-b;a=a-b;
using namespace std;
int swap2(int a,int b){
    int temp;
    temp = a;
    b = a;
    a = temp;
    return 0;
}
int main(int argc, _TCHAR* argv[])
{
    int x = 5,y = 10;
    swap(x,y);//一定要记住宏定义是做简单的替换,在此把a=a+b……展开,是操作的x,y。
    cout<<x<<y<<endl;
    swap2(x,y);//这个函数是操作的在swap2中的局部变量,对x,y的值不做改变
    cout<<x<<y<<endl;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载