在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
热门推荐
4 甄嬛传祝福语简短
10 中秋祝福语给父亲简短
11 老婆生日祝福语简短孩子
12 新年探亲祝福语简短精辟
13 祝福语简短七夕
14 双节祝福语简短英文
15 新婚抖音祝福语简短
16 中考祝福语简短高级句
17 秋分祝福语简短文案
18 送给员工美好祝福语简短