Loading... ### 方法一:使用临时变量交换 <pre><div class="hljs"><code class="lang-cpp hljs">#include<iostream> using namespace std; intmain(){ int a, b; cin >> a >> b; // 使用临时变量 buf 来交换 a 和 b 的值 int buf = a; a = b; b = buf; cout << a << ' ' << b; return 0; } </code></div></pre> 这种方法是最常见的,通过一个临时变量来交换两个变量的值。 ### 方法二:使用STL函数 `swap()` <pre><div class="hljs"><code class="lang-cpp hljs">#include<iostream> #include<algorithm> using namespace std; intmain(){ int a, b; cin >> a >> b; // 使用 swap() 函数交换 a 和 b 的值 swap(a, b); cout << a << ' ' << b; return 0; } </code></div></pre> 这种方法使用了C++标准库中的 `swap()` 函数,它可以直接交换两个变量的值。 ### 方法三:使用位运算异或交换 <pre><div class="hljs"><code class="lang-cpp hljs">#include<iostream> using namespace std; intmain(){ int a, b; cin >> a >> b; // 使用位运算异或交换 a 和 b 的值 a ^= b; b ^= a; a ^= b; cout << a << ' ' << b; return 0; } </code></div></pre> 这种方法使用位运算的性质来实现交换,它避免了使用额外的变量。 每种方法都能达到交换变量的目的,选择其中之一取决于个人偏好和代码的可读性。在实际编程中,你可以根据具体情况选择最合适的方法。 最后修改:2024 年 08 月 08 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏