码迷,mamicode.com
首页 > 其他好文 > 详细

变量交换的三种方式

时间:2014-11-09 23:25:47      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:blog   io   sp   div   log   bs   amp   as   tt   

#include <stdio.h>
#include <math.h>
int main(void)
{
	int a, b, t;
	
	scanf("%d%d", &a, &b);
	/*
	方法一:三变量法
	t = a;
	a = b;
	b = t;	
	方法二:
	a = a - b;
	b = a + b;
	a = b - a;
	方法二变种:
	a = a + b;
	b = a - b;
	a = a - b;
	*/
	//方法三:异或运算,原因是对于整形变量a,有a^a=0
	a = a ^ b;
	b = a ^ b;
	a = a ^ b;
	
	printf("%d %d\n", a, b);

    return 0;
}

 

变量交换的三种方式

标签:blog   io   sp   div   log   bs   amp   as   tt   

原文地址:http://www.cnblogs.com/xpjiang/p/4085968.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!