本文概述
我们可以交换两个数字而无需使用第三个变量。有两种不使用第三个变量即可交换两个数字的常用方法:
- 通过+和-
- 通过*和/
程序1:使用∗和/
让我们看一个简单的C#示例,该示例在不使用第三个变量的情况下交换两个数字。
using System;
public class SwapExample
{
public static void Main(string[] args)
{
int a=5, b=10;
Console.WriteLine("Before swap a= "+a+" b= "+b);
a=a*b; //a=50 (5*10)
b=a/b; //b=5 (50/10)
a=a/b; //a=10 (50/5)
Console.Write("After swap a= "+a+" b= "+b);
}
}
输出:
Before swap a= 5 b= 10
After swap a= 10 b= 5
程序2:使用+和-
让我们看另一个示例,使用+和-交换两个数字。
using System;
public class SwapExample
{
public static void Main(string[] args)
{
int a=5, b=10;
Console.WriteLine("Before swap a= "+a+" b= "+b);
a=a+b; //a=15 (5+10)
b=a-b; //b=5 (15-10)
a=a-b; //a=10 (15-5)
Console.Write("After swap a= "+a+" b= "+b);
}
}
输出:
Before swap a= 5 b= 10
After swap a= 10 b= 5
评论前必须登录!
注册