C++ 实例 - 交换两个数
C++ 教程
· 2019-02-26 11:13:51
以下我们使用两种方法来交换两个变量:使用临时变量与不使用临时变量。
实例 - 使用临时变量
#include <iostream>
using namespace std;
int main()
{
int a = 5, b = 10, temp;
cout << "交换之前:" << endl;
cout << "a = " << a << ", b = " << b << endl;
temp = a;
a = b;
b = temp;
cout << "\n交换之后:" << endl;
cout << "a = " << a << ", b = " << b << endl;
return 0;
}
以上程序执行输出结果为:
交换之前: a = 5, b = 10 交换之后: a = 10, b = 5
实例 - 不使用临时变量
#include <iostream>
#include <iostream>
using namespace std;
int main()
{
int a = 5, b = 10;
cout << "交换之前:" << endl;
cout << "a = " << a << ", b = " << b << endl;
a = a + b;
b = a - b;
a = a - b;
cout << "\n交换之后:" << endl;
cout << "a = " << a << ", b = " << b << endl;
return 0;
}
以上程序执行输出结果为:
交换之前: a = 5, b = 10 交换之后: a = 10, b = 5
点击查看所有 C++ 教程 文章: https://www.codercto.com/courses/l/18.html
A Guide to Monte Carlo Simulations in Statistical Physics
Landau, David P./ Binder, Kurt / Cambridge Univ Pr / 2005-9 / 786.00元
This new and updated edition deals with all aspects of Monte Carlo simulation of complex physical systems encountered in condensed-matter physics, statistical mechanics, and related fields. After brie......一起来看看 《A Guide to Monte Carlo Simulations in Statistical Physics》 这本书的介绍吧!