首页
题库
面试
求职
学习
竞赛
More+
所有博客
搜索面经/职位/试题/公司
搜索
我要招人
去企业版
登录 / 注册
首页
>
试题广场
>
二进制1的位数
[编程题]二进制1的位数
热度指数:157
时间限制:C/C++ 1秒,其他语言2秒
空间限制:C/C++ 256M,其他语言512M
算法知识视频讲解
求出一个正整数转换成二进制后的数字“1”的个数。
例:数字23转为二进制为 10111,其中1的个数为4
示例1
输入
23
输出
4
马上挑战
算法知识视频讲解
提交运行
算法知识视频讲解
添加笔记
求解答(0)
邀请回答
收藏(5)
分享
纠错
提交结果有问题?
4个回答
0篇题解
开通博客
暂无题解
问题信息
阅文集团
2021
Java工程师
来自:
2021届阅文Java...
上传者:
小小
难度:
4条回答
5收藏
1980浏览
热门推荐
通过挑战的用户
牛客67246...
2022-11-02 16:27:27
Nya
2022-11-01 18:41:25
牛客86979...
2022-11-01 16:39:07
神猫TOM
2022-11-01 14:53:49
林邵晨
2022-10-31 17:35:30
相关试题
五月份的商品销售额为60万元,该月...
数据分析师
途虎
2021
评论
(2)
来自
途虎养车2021秋招数据...
有三个企业的年利润额分别是5000...
数据分析师
途虎
2021
评论
(10)
来自
途虎养车2021秋招数据...
下列哪两个变量之间的相关程度高
数据分析师
途虎
2021
评论
(4)
来自
途虎养车2021秋招数据...
请列举5个spring框架中的注解...
Java工程师
阅文集团
2021
评论
(2)
来自
2021届阅文Java方...
开启两个线程A、B,打印1到10,...
Java工程师
阅文集团
2021
评论
(12)
来自
2021届阅文Java方...
二进制1的位数
扫描二维码,关注牛客网
意见反馈
下载牛客APP,随时随地刷题
import java.util.*; public class Solution { /** * * @param num int整型 * @return int整型 */ public int trueBitCount (int num) { // write code here } }
class Solution { public: /** * * @param num int整型 * @return int整型 */ int trueBitCount(int num) { // write code here } };
# # # @param num int整型 # @return int整型 # class Solution: def trueBitCount(self , num ): # write code here
/** * * @param num int整型 * @return int整型 */ function trueBitCount( num ) { // write code here } module.exports = { trueBitCount : trueBitCount };
# # # @param num int整型 # @return int整型 # class Solution: def trueBitCount(self , num ): # write code here
package main /** * * @param num int整型 * @return int整型 */ func trueBitCount( num int ) int { // write code here }
/** * * @param num int整型 * @return int整型 */ int trueBitCount(int num ) { // write code here }
23
4