在C ++中找到奇偶校验的程序

在本教程中,我们将讨论一个寻找奇偶校验的程序。

为此,我们将提供一个号码。我们的任务是找到它的奇偶性,即计数个数是奇数还是偶数。

示例

# include<bits/stdc++.h>

# define bool int

using namespace std;

//查找给定数字的奇偶性

bool getParity(unsigned int n) {

   bool parity = 0;

   while (n){

      parity = !parity;

      n = n & (n - 1);

   }

   return parity;

}

int main() {

   unsigned int n = 7;

   cout<<"Parity of no "<<n<<": "<<(getParity(n)? "Odd": "even");

   getchar();

   return 0;

}

输出结果

Parity of no 7: odd

以上是 在C ++中找到奇偶校验的程序 的全部内容, 来源链接: utcz.com/z/331272.html

回到顶部