x = x&(x-1)
:每执行一次x =x&(x-1),会将x用二进制表示时最右边的一个1变为0,因为x-1将会将该位(x用二进制表示时最右边的一个1)变为0。
// 判断一个数字的二进制中有几个1
#include<iostream>
using namespace std;
int main() {
int x;
while (cin >> x) {
int count = 0;
while (x) {
x = x & (x - 1);
count++;
}
cout << count << endl;
}
return 0;
}
// 判断一个数是否是2的n次方
#include <stdio.h>
int func(int x)
{
if( (x&(x-1)) == 0 )
return 1;
else
return 0;
}
int main()
{
int x = 8;
printf("%d\n", func(x));
}