练习题:设置a=10,b=20,要求输出结果为a=20,b=10。
int a = 10;
int b = 20;
(a, b) = (b, a); //无需中间值,直接交换
Console.WriteLine(a); //输出结果:20
Console.WriteLine(b); //输出结果:10
练习题:设置a=10,b=20,要求输出结果为a=20,b=10。
int a = 10;
int b = 20;
(a, b) = (b, a); //无需中间值,直接交换
Console.WriteLine(a); //输出结果:20
Console.WriteLine(b); //输出结果:10