View in color | License | Download script | History | Other scripts by: notchent |
30-Apr 15:46 UTC
[0.057] 10.114k
[0.057] 10.114k
convert-decimal-to-binary.rREBOL [
title: "Convert Decimal to Binary"
date: 2-aug-2014
file: %convert-decimal-to-binary.r
author: Nick Antonaccio
purpose: {
A quick example demonstrating the technique at
https://www.youtube.com/watch?v=XdZqk8BXPwg
}
]
x: to-integer ask "Decimal Number: "
y: ""
until [
insert head y either odd? x [1][0]
x: x / 2
x <= 1
]
alert y |