题解 | #查找输入整数二进制中1的个数#

查找输入整数二进制中1的个数

https://www.nowcoder.com/practice/1b46eb4cf3fa49b9965ac3c2c1caf5ad

/*
 * @Description: If you get question about the code, contact me at **********.
 * @Author: pengjunxing
 * @Date: 2023-02-10 19:59:42
 * @LastEditors: pengjunxing
 * @LastEditTime: 2023-02-10 20:02:36
 */
#include<iostream>
using namespace std;
int count(int n)
{
    int time=0;
    while(n)
    {
        if(n%2)
        {
            time++;
        }
        n/=2;
    }
    return time;
}
int main()
{
    int num;
    while(cin>>num)
    {
        cout<<count(num)<<endl;
    }
}

全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
专心打鱼:互联网搬运工,贴子都要偷
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务