C++ 交换两数值

原文: C++ 传值调用

   eric

不用临时变量:

#include <iostream>
using namespace std;

void swap(int a, int b)
{
    a=a+b;
    b=a-b;
    a=a-b;
    return;
}

int main ()
{
   // 局部变量声明
   int a = 100;
   int b = 200;
 
   cout << "交换前,a 的值:" << a << endl;
   cout << "交换前,b 的值:" << b << endl;
 
   // 调用函数来交换值
   swap(a, b);
 
   cout << "交换后,a 的值:" << a << endl;
   cout << "交换后,b 的值:" << b << endl;
 
   return 0;
}
更多解析

  客服小姐姐好漂亮

使用异或运算交换两数的值:

#include <iostream>
using namespace std;

void swap(int a, int b)
{
    a=a^b;
    b=a^b;
    a=a^b;
    return;
}

int main ()
{
   // 局部变量声明
   int a = 100;
   int b = 200;
 
   cout << "交换前,a 的值:" << a << endl;
   cout << "交换前,b 的值:" << b << endl;
 
   // 调用函数来交换值
   swap(a, b);
 
   cout << "交换后,a 的值:" << a << endl;
   cout << "交换后,b 的值:" << b << endl;
 
   return 0;
}

更多内容参考:C 关于使用异或运算交换两数的值

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

点我查看本站打赏源码!

忘记密码?

如何获取邀请码?

关闭