Find out number of bits needed to represent a positive integer in binary?

后端 未结 14 1696
醉酒成梦
醉酒成梦 2020-12-05 09:35

This is probably pretty basic, but to save me an hour or so of grief can anyone tell me how you can work out the number of bits required to represent a given positive intege

14条回答
  •  离开以前
    2020-12-05 10:23

    (int) Math.ceil((Math.log(n) / Math.log(2))
    

    Of course this only works for positive integers.

提交回复
热议问题