0
/ 5.0
For function decToBinary
, write the missing parts of the recursion case. This function should return a string that stores the binary...
For function decToBinary
, write the missing parts of
the recursion case. This function should return a string
that stores the binary equivalent for int variable
num
. Example: The binary equivalent of 13 may
be found by repeatedly dividing 13 by 2. So, 13 in base
2 is represented by the string "1101".
Examples:
decToBinary(13) -> "1101"
Your feedback will appear here when you check your answer.