Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i print a integer in binary format in java.

example i have a number , i want to print it in binary, i dont want to do it by writing a algorithm, rather want to use a implicit function

share|improve this question

3 Answers

Assuming you mean "built-in":

int x = 100;
System.out.println(Integer.toBinaryString(x));

(Long has a similar method, BigInteger has an instance method where you can specify the radix.)

share|improve this answer
I have been to many question on stackoverflow and always a fan of your answer. Just to the point... again a +1 to you ( I am habitual to it :P ). Thanks a lot again :) – amod0017 Mar 8 at 18:56

Look at the API documentation of the Integer class. Using the API doc is one of the first things you need to learn as a Java programmer, it will help you get along much faster than asking people...

share|improve this answer

System.out.println(Integer.toBinaryString(343));

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.