AcWing801.二进制中1的个数[操作系统入门]

编程

AcWing 801. 二进制中1的个数

#include <bits/stdc++.h>

using namespace std;

int lowbit(int x){

return x&-x;

}

int main(){

int n;

cin>>n;

while(n--){

int x,res=0;

cin>>x;

while(x) /*printf("当前x的值:%d ",x),*/x-=lowbit(x),res++;

//printf("%d

",x);

//cout<<"1的个数:"<<res<<" ";

cout<<res<<" ";

//printf("

---

");

}

return 0;

}

AcWing 801. 二进制中1的个数

原文:https://www.cnblogs.com/wiseXu/p/13390447.html

以上是 AcWing801.二进制中1的个数[操作系统入门] 的全部内容, 来源链接: utcz.com/z/518820.html

回到顶部