Question

Write a JAVA application allowing user to input a Decimal number and output a Binary number.

Write a JAVA application allowing user to input a Decimal number and output a Binary number.

0 0
Add a comment Improve this question Transcribed image text
Answer #1
//DecimalToBinary.java
import java.util.Scanner;
public class DecimalToBinary {
  public static void printBinary(int value){
    if(value > 0){
      printBinary(value/2);
      System.out.printf("%d",(value%2));
    }
  }

  public static void main(String args[]){
    Scanner scanner = new Scanner(System.in);
    System.out.printf("Enter decimal value: ");
    int num = scanner.nextInt();
    printBinary(num);
  }
}

Add a comment
Know the answer?
Add Answer to:
Write a JAVA application allowing user to input a Decimal number and output a Binary number.
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT