在C++中,可以使用std::swap函数来交换两个变量的值。以下是使用std::swap函数的示例代码:
#include <iostream>
#include <algorithm>
int main() {
int a = 5;
int b = 10;
std::cout << "Before swapping: a = " << a << ", b = " << b << std::endl;
std::swap(a, b);
std::cout << "After swapping: a = " << a << ", b = " << b << std::endl;
return 0;
}
运行上面的代码将输出:
Before swapping: a = 5, b = 10
After swapping: a = 10, b = 5
可以看到,使用std::swap函数可以轻松交换两个变量的值。