Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

Java Program to Converter a Decimal to Binary

Posted in Java Tutorial
Updated on Jan 11, 2024
By Mari Selvan
πŸ‘οΈ 45 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
Java Program to Converter a Decimal to Binary

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the world of programming, converting numbers from one base to another is a common and essential task. One interesting conversion is from decimal to binary. Decimal is the base-10 number system, and binary is the base-2 system.

Converting a decimal number to its binary equivalent involves representing the decimal value using only the digits 0 and 1.

In this tutorial, we'll explore a java program that efficiently converts a decimal number to its binary representation.

πŸ“„ Example

Let's dive into the java code that achieves this functionality.

DecimalToBinary.java
Copied
Copy To Clipboard
public class DecimalToBinary {

  // Function to convert decimal to binary
  static void decimalToBinary(int decimalNumber) {
    int[] binaryNumber = new int[32]; // To store binary digits
    int i = 0;

    // Convert decimal to binary
    while (decimalNumber > 0) {
      binaryNumber[i] = decimalNumber % 2;
      decimalNumber = decimalNumber / 2;
      i++;
    }

    // Print binary number in reverse order
    System.out.print("Binary equivalent: ");
    for (int j = i - 1; j >= 0; j--) {
      System.out.print(binaryNumber[j]);
    }
    System.out.println();
  }

  // Driver program
  public static void main(String[] args) {
    // Replace this value with your desired decimal number
    int decimalNumber = 15;

    // Call the function to convert decimal to binary
    decimalToBinary(decimalNumber);
  }
}

πŸ’» Testing the Program

To test the program with a different decimal number, simply replace the value of decimalNumber in the main function.

Output
Binary equivalent: 1111

Compile and run the program to see the binary equivalent.

🧠 How the Program Works

  1. The program defines a class DecimalToBinary containing a static method decimalToBinary that takes a decimal number as input and prints its binary equivalent.
  2. Inside the method, it uses an array (binaryNumber) to store the binary digits.
  3. It iterates through the process of dividing the decimal number by 2 and storing the remainder until the decimal number becomes 0.
  4. The binary digits are stored in reverse order in the array.
  5. Finally, the binary equivalent is printed.

🧐 Understanding the Concept of Decimal to Binary

Before delving into the code, let's briefly understand the binary number system. In binary, each digit represents a power of 2, starting from the rightmost digit as 2^0, then 2^1, 2^2, and so on.

Converting a decimal number to binary involves repeatedly dividing the decimal number by 2 and recording the remainders in reverse order.

For example, the decimal number 15 is equivalent to the binary number 1111.

🎒 Optimizing the Program

While the provided program is effective, consider exploring and implementing optimizations for handling larger decimal numbers.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

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

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
3 months ago

If you have any doubts regarding this article (Java Program to Converter a Decimal to Binary), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy