Skip to content
Advertisement

Converting Decimal to Binary Java

I am trying to convert decimal to binary numbers from the user’s input using Java.

I’m getting errors.

JavaScript

How do I convert Decimal to Binary in Java?

Advertisement

Answer

Your binaryForm method is getting caught in an infinite recursion, you need to return if number <= 1:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement