Java

Java Convert Binary to Decimal1 min read

There are two following ways to convert binary number to decimal number:

1) Using Integer.parseInt() method of Integer class.
2) Do conversion by writing your own logic without using any predefined methods.

 

Method 1: Binary to Decimal conversion using Integer.parseInt() method

Method 2: Conversion without using parseInt

 

Leave a Comment