Answers for "binary to decimal conversion with getting the bit solution java program"

1

binary to decimal in java program

import java.util.Scanner;
class BinaryToDecimal {
    public static void main(String args[]){
       Scanner input = new Scanner( System.in );
       System.out.print("Enter a binary number: ");
       String binaryString =input.nextLine();
       System.out.println("Output: "+Integer.parseInt(binaryString,2));
    }
}
Posted by: Guest on February-21-2021

Code answers related to "binary to decimal conversion with getting the bit solution java program"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language