Answers for "program to convert binary to decimal in java"

1

Java convert octal to decimal

public class OctalToDecimalDemo
{
   public static void main(String[] args)
   {
      String strOctal = "141";
      // converting octal to decimal number using Integer.parseInt() method
      int decimal = Integer.parseInt(strOctal, 8);
      System.out.println(decimal);
   }
}
Posted by: Guest on January-01-2021
4

binary string to int java

int decimal=Integer.parseInt(binaryString,2);
Posted by: Guest on June-19-2020
1

Java convert binary to decimal

import java.util.Scanner;
public class BinaryToDecimalDemo 
{
   public static void main(String[] args) 
   {
      int number, decimal = 0, a = 0;
      Scanner sc = new Scanner(System.in);
      System.out.println("Please enter binary number: ");
      String strBinary = sc.nextLine();
      number = Integer.parseInt(strBinary);
      while(number != 0){
         decimal += (number % 10) * Math.pow(2, a);
         number = number / 10;
         a++;
      }
      System.out.println("Decimal number: " + decimal);
      sc.close();
   }
}
Posted by: Guest on November-11-2020

Code answers related to "program to convert binary to decimal in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language