Answers for "Java convert octal to decimal"

2

octal to binary in java

import java.util.Scanner;
public class OctalToBinaryJava
{
   public static void main(String[] args)
   {
      Scanner sc = new Scanner(System.in);
      System.out.println("Please enter octal number: ");
      int octal = Integer.parseInt(sc.nextLine(), 8);
      String strBinary = Integer.toBinaryString(octal);
      System.out.println("Binary value is: " + strBinary);
      sc.close();
   }
}
Posted by: Guest on October-30-2020
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

Code answers related to "Java convert octal to decimal"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language