FranciscoR. Posted February 22, 2017 at 09:20 AM Report Share #602698 Posted February 22, 2017 at 09:20 AM A minha dúvida é como posso criar um programa que leia um valor de tipo byte e determine quantos bits estão a 1. Sei mais ou menos como fazer mas estou um pouco confuso de como trabalhar com a máscara e com o operador shift Link to comment Share on other sites More sharing options...
Bruno Tafarelo Posted April 7, 2017 at 06:10 PM Report Share #603532 Posted April 7, 2017 at 06:10 PM Olá Francisco. Caso ainda não tenha encontrado a solução, veja se este código te ajuda. int var = 123123; System.out.println(Integer.toBinaryString(var)); System.out.println(Integer.bitCount(var)); Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now