计算9999的二进制中含有多少个1

2014-11-24 00:40:29 · 作者: · 浏览: 2

print // 求数字的二进制含有多少个1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include
int func(int num)
{
int countx = 0;
while (num)
{
countx ++;
num = num&(num-1);
}
return countx;
}
int _tmain(int argc, _TCHAR* argv[])
{
int num=9999;
int count=func(9999);
printf("%d",count);
getchar();
return 0;
}

// 求数字的二进制含有多少个1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include
int func(int num)
{
int countx = 0;
while (num)
{
countx ++;
num = num&(num-1);
}
return countx;
}
int _tmain(int argc, _TCHAR* argv[])
{
int num=9999;
int count=func(9999);
printf("%d",count);
getchar();
return 0;
}