首页 > 编程语言 > 详细

将一个数转化为二进制后,求其中1的个数 C++

时间:2015-04-25 16:27:44      阅读:153      评论:0      收藏:0      [点我收藏+]

#include <iostream>
using namespace std;
int func(int x)
{
int count=0;
while(x)
{
x=x&(x-1);//与的次数就是包含1的个数
count++;
}
return count;
}

void main()
{
int x;
cin>>x;
cout<<func(x)<<endl;
}

将一个数转化为二进制后,求其中1的个数 C++

原文:http://www.cnblogs.com/alanhu/p/4455944.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!