Java Basic
Java Interview Programs
- Java Interview Programs
- Java Abundant Number
- Java Amicable Number
- Java Armstrong Number
- Java Average of N Numbers
- Java Automorphic Number
- Java Biggest of three numbers
- Java Binary to Decimal
- Java Common Divisors
- Java Composite Number
- Java Condense a Number
- Java Cube Number
- Java Decimal to Binary
- Java Decimal to Octal
- Java Disarium Number
- Java Even Number
- Java Evil Number
- Java Factorial of a Number
- Java Fibonacci Series
- Java GCD
- Java Happy Number
- Java Harshad Number
- Java LCM
- Java Leap Year
- Java Magic Number
- Java Matrix Addition
- Java Matrix Division
- Java Matrix Multiplication
- Java Matrix Subtraction
- JS Matrix Transpose
- Java Maximum Value of an Array
- Java Minimum Value of an Array
- Java Multiplication Table
- Java Natural Number
- Java Number Combination
- Java Odd Number
- Java Palindrome Number
- Java Pascalβs Triangle
- Java Perfect Number
- Java Perfect Square
- Java Power of 2
- Java Power of 3
- Java Pronic Number
- Java Prime Factor
- Java Prime Number
- Java Smith Number
- Java Strong Number
- Java Sum of Array
- Java Sum of Digits
- Java Swap Two Numbers
- Java Triangular Number
Java Program to Converter a Binary to Decimal
Photo Credit to CodeToFun
π Introduction
In the world of programming, understanding different number systems is crucial. One common conversion task is to convert a binary number to its decimal equivalent.
Binary is a base-2 number system, while decimal is a base-10 system.
In this tutorial, we'll explore a java program that efficiently converts a binary number to its decimal representation.
π Example
Let's dive into the java code that performs the binary to decimal conversion.
public class BinaryToDecimalConverter {
// Function to convert binary to decimal
static int binaryToDecimal(long binaryNumber) {
int decimalNumber = 0, i = 0;
while (binaryNumber != 0) {
long remainder = binaryNumber % 10;
binaryNumber /= 10;
decimalNumber += remainder * Math.pow(2, i);
++i;
}
return decimalNumber;
}
// Driver program
public static void main(String[] args) {
// Replace this binary number with your desired value
long binaryNumber = 101010;
// Call the function to convert binary to decimal
int decimalNumber = binaryToDecimal(binaryNumber);
System.out.println("Binary: " + binaryNumber);
System.out.println("Decimal: " + decimalNumber);
}
}
π» Testing the Program
To test the program with a different binary number, replace the value of binaryNumber in the main function.
Binary: 101010 Decimal: 42
Compile and run the program to see the binary-to-decimal conversion in action.
π§ How the Program Works
- The program defines a class BinaryToDecimalConverter containing a static method binaryToDecimal that takes a binary number as input and returns its decimal equivalent.
- Inside the method, it uses a while loop to iterate through each digit of the binary number.
- For each digit, it calculates the remainder and updates the decimal number accordingly.
- The main method tests the conversion by providing a binary number and printing both the binary and decimal representations.
π§ Understanding the Concept of Binary and Decimal Systems
- Binary System (Base-2): In the binary system, numbers are represented using only two digits, 0 and 1. Each digit's place value is a power of 2.
- Decimal System (Base-10): The decimal system is the standard number system that we use every day. It uses ten digits, 0 through 9, and each digit's place value is a power of 10.
Binary-to-decimal conversion involves multiplying each binary digit by 2 raised to the power of its position and summing up the results.
For example, the binary number 101010 is converted to decimal as follows:
1 * 2^5 + 0 * 2^4 + 1 * 2^3 + 0 * 2^2 + 1 * 2^1 + 0 * 2^0 = 42
π’ Optimizing the Program
While the provided program is effective, consider exploring optimizations or handling edge cases for larger binary numbers.
Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!
π¨βπ» Join our Community:
Author
For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.
Buy me a coffee to make codetofun.com free for everyone.
Buy me a Coffee
If you have any doubts regarding this article (Java Program to Converter a Binary to Decimal), please comment here. I will help you immediately.