Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. (define (human b , (radix 0))
  2. (while (> (/ b 1024) 0)
  3. (set 'b (div b 1024))
  4. (inc radix))
  5. (format "%.2f %s" b (nth radix magnitudes)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement