【c語言】求兩個數中不同的位的個數

zhaoyaqian552發表於2015-06-29
//  求兩個數中不同的位的個數

#include <stdio.h>

int dcount(int a,int b)
{
	int count = 0;
	int num = a ^ b;
	while (num)
	{
		count++;
		num = num & (num - 1);
	}
	return count;
}

int main()
{
	printf("%d\n", dcount(3, 5));
	return 0;
}





相關文章