c# xor运算_C#程序使用XOR运算符交换数字

c# xor运算

Given two integer numbers and we have to swap them using XOR operator in C#.

给定两个整数,我们必须在C#中使用XOR运算符交换它们。

Statements to swap two numbers using XOR operator,

使用XOR运算符交换两个数字的语句,

If the variables are a and b, then the following XOR statements are used to swap their values:

如果变量是a和b ,那么以下XOR语句用于交换它们的值:

    a = a^b;
    b = a^b;
    a = a^b;

Program:

程序:

using System;
using System.Text;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 0;
            int b = 0;
            
            //reading numbers
            Console.Write("Enter first number: ");
            a = int.Parse(Console.ReadLine());
            Console.Write("Enter second number: ");
            b = int.Parse(Console.ReadLine());

            //printing the numbers before swapping
            Console.WriteLine("Before swapping...");
            Console.WriteLine("a = {0} \t b = {1}", a, b);

            //swapping 
            a = a ^ b;
            b = a ^ b;
            a = a ^ b;

            //printing the numbers after swapping
            Console.WriteLine("After swapping...");
            Console.WriteLine("a = {0} \t b = {1}", a, b);

            //hit ENTER to exit
            Console.ReadLine();
        }
    }
}

Output

输出量

Enter first number: 100
Enter second number: 200
Before swapping...
a = 100          b = 200
After swapping...
a = 200          b = 100


翻译自: https://www.includehelp.com/dot-net/swap-numbers-using-XOR-operator-program-in-c-sharp.aspx

c# xor运算

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值