交换算法

root 站长 2019-04-16 18:00:23 44

方法

交换a和b的值,先使用临时变量t来保存a,接下来用a保存b, 最后用b保存t。

代码如下

int t = a;
a = b;
b = t;
{{ vote && vote.total.up }}

共 13 条回复

Xionghaoyu straight a student
dinosaurgy

#include using namespace std; int main(void){ int a,b; cin>>a>>b; cout<<b" "<<a; return 0; }

gaojingzhe

#include #include using namespace std; int main(){ int a,b,c; cin>>a>>b; c=a; a=b; b=c; cout<<a<<" "<<b; return 0; }