Binary to Decimal Program in Java

Advertisements

Prev Tutorial Next Tutorial

Convert Binary to Decimal Program in Java

There are two way to convert binary to decimal in Java programming first is using predefined method and second is using own logic.

Decimal Number representation of a real number using the base ten and decimal notation.

Binary Number contains only 0 and 1.

Convert Binary to Decimal in Java

import java.util.Scanner;
public class BinaryToDecimal
{ 
 public static void main(String[] args) 
 {
 Scanner in = new Scanner( System.in );
 System.out.println("Enter a Binary Number: ");
 
int  binarynum =in.nextInt();
int binary=binarynum;

int decimal = 0;
int power = 0;
 
while(true)
{
 if(binary == 0)
 {
 break;
 }
 else 
 {
  int tmp = binary%10;
  decimal += tmp*Math.pow(2, power);
  binary = binary/10;
  power++;
 }
}
  System.out.println("Binary="+binary+" Decimal="+decimal); ;
}
}

Output

Enter a Binary Number: 111
Binary is= 111 Decimal=7

Syntax to compile and run java program

Syntax

for compile -> c:/>javac BinaryToDecimal.java
for run -> c:/>java BinaryToDecimal

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements