Answers for "binary to octal conversion"

0

binary to octal conversion java program

// conversion of binary to octal in java..
public class Main{
    public static void main(String args[]) throws Exception{
        String binary = "1100100";                // binary number.. 
        int decimal = Integer.parseInt(binary,2); // converting binary to decimal
        System.out.println(Integer.toOctalString(decimal)); // 144 <= octal output..  
    }
}
Posted by: Guest on May-12-2020

Code answers related to "binary to octal conversion"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language