Answers for "from binary to decimal java"

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
0

Binary to hexadecimal conversion with java

public static int binaryToHexadecimal(String binary) {
        // Declaring Hexadecimal variable
        String hex = "";

/**
 * Converting the Binary value to Hexadecimal Equivalent
 * First convert the Binary to Decimal Equivalent
 * Then to Hexadecimal Equivalent
 */
        // Converting Binary to decimal
        int number = Integer.parseInt( binary, 2 );
        // Converting Decimal Equivalent to Hexadecimal
        hex = Integer.toHexString( number );

        // Returning the Hexadecimal value
        return hex;
    }
Posted by: Guest on October-19-2021

Code answers related to "from binary to decimal java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language