Write a recursive method that converts a positive decimal number to into a binary number as a string. The method header is: String decimalToBinary(int value) //Note: Print empty string ", if value is negative or zero. Input 2 Output 10

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter7: Characters, Strings, And The Stringbuilder
Section: Chapter Questions
Problem 17RQ
icon
Related questions
Question

***********************Answer question below:******

Write code in Java:

- Make sure code is recursive.

- Do not change code other than where it says you can.

import java.util.*;

import java.lang.*;

import java.io.*;

class DecimalToBinary {

public static String decimalToBinary(int value) {

//*Code goes here*

}

}

 

class DriverMain {

public static void main(String args[]) {

Scanner input = new Scanner(System.in);

System.out.print(DecimalToBinary.decimalToBinary(input.nextInt()));

}

}

Write a recursive method that converts a positive decimal number to into a binary number as a string.
The method header is:
String decimalToBinary(int value)
//Note: Print empty string "", if value is negative or zero.
Input
2
Output
10
Transcribed Image Text:Write a recursive method that converts a positive decimal number to into a binary number as a string. The method header is: String decimalToBinary(int value) //Note: Print empty string "", if value is negative or zero. Input 2 Output 10
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Random Class and its operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT