Problem 511. Converting Decimal to Binary

Created by Turgut

Given a decimal number that may include a fractional component, convert it into binary representation. The numbers you are given will always be cleanly representable using positive and negative powers of 2.

As with dec2bin, return your result in a string.

Examples:

 Input  d = 2.5
 Output b is '10.1'
 Input  d = 34.125
 Output b is '100010.001'

Tags

Problem Group

21 solvers submitted 62 solutions (2.95 solutions/solver).

Problem Comments