C语言交换变量值的几种方法

 我来答
林___0
2018-06-23 · TA获得超过347个赞
知道小有建树答主
回答量:138
采纳率:100%
帮助的人:26.3万
展开全部

方法一:三变量交换。

#include<stdio.h>
int main(void)
{
int a,b;
scanf("%d%d",&a,&b);
int t=a;a=b;b=t;
printf("%d %d\n",a,b);
return 0;
}

方法二:加减交换

#include<stdio.h>
int main(void)
{
int a,b;
scanf("%d%d",&a,&b);
a=a+b;
b=a-b;
a=a-b;
printf("%d %d\n",a,b);
return 0;
}

方法三:异或交换

#include<stdio.h>
int main(void)
{
int a,b;
scanf("%d%d",&a,&b);
a=a^b;b=b^a;a=a^b;//可写成a^=b^=a^=b;
printf("%d %d\n",a,b);
return 0;
}

方法四(黑盒测试下):不交换

#include<stdio.h>
int main(void)
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d %d\n",b,a);
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式