博客
关于我
第28题:求整数的二进制表示中1的个数
阅读量:529 次
发布时间:2019-03-08

本文共 802 字,大约阅读时间需要 2 分钟。

github:

第28题:输入一个整数,求该整数的二进制表达中有多少个1。例如输入10,由于其二进制表示为1010,有两个1,因此输出2。

代码

package test028;/** * Created by cq on 2015/6/28. * 第28题:输入一个整数,求该整数的二进制表达中有多少个1。例如输入10, *        由于其二进制表示为1010,有两个1,因此输出2。 */public class Test028 {       public static int getNumOfOne(int n){        if (n < 1){            return -1;        }        int count = 0;        while (n != 0){            if ((n&1) == 1){                count++;            }            n >>= 1;        }        return count;    }    public static void main(String[] args){        System.out.println("11的二进制表示中有 "+getNumOfOne(11)+" 个1。");    }}

执行结果

Connected to the target VM, address: '127.0.0.1:3174', transport: 'socket'Disconnected from the target VM, address: '127.0.0.1:3174', transport: 'socket'11的二进制表示中有 3 个1。Process finished with exit code 0

转载地址:http://hbciz.baihongyu.com/

你可能感兴趣的文章
Netty遇到TCP发送缓冲区满了 写半包操作该如何处理
查看>>
Netty:ChannelPipeline和ChannelHandler为什么会鬼混在一起?
查看>>
Netty:原理架构解析
查看>>
Network Dissection:Quantifying Interpretability of Deep Visual Representations(深层视觉表征的量化解释)
查看>>
Network Sniffer and Connection Analyzer
查看>>
Network 灰鸽宝典【目录】
查看>>
NetworkX系列教程(11)-graph和其他数据格式转换
查看>>
Networkx读取军械调查-ITN综合传输网络?/读取GML文件
查看>>
network小学习
查看>>
Netwox网络工具使用详解
查看>>
Net与Flex入门
查看>>
net包之IPConn
查看>>
Net操作配置文件(Web.config|App.config)通用类
查看>>
Neutron系列 : Neutron OVS OpenFlow 流表 和 L2 Population(7)
查看>>
New Relic——手机应用app开发达人的福利立即就到啦!
查看>>
NFinal学习笔记 02—NFinalBuild
查看>>
NFS
查看>>
NFS Server及Client配置与挂载详解
查看>>
NFS共享文件系统搭建
查看>>
nfs复习
查看>>