Method to Convert Binary
Today I'd like to introduce a table to understand how to convert between decimal and binary.
ErmiteUrbain made a table to show how Amir CPS's converter THJ835-1 works.
ErmiteUrbain also rewrote Amir's converter. The new one is THJ835-2.
Thank you ErmiteUrbain for sharing your understanding!
Please post your programs or ideas to the forum thread Nominate games (or other programs) here to get featured on our Blog! (PART 3).
See Also
- Decimal to Binary Converter – Small Basic Featured Program
- binary to decimal converter – Small Basic Featured Program (by WhTurner33)
- Text to Binary Converter – Small Basic Featured Program
- How to convert text into Binary
- Want to talk Binary? (forum)
Comments
- Anonymous
June 09, 2018
another method dec->bin (iterative)start from 2^n=2^n else write 0dec n by 1repeat from loop: until 2^n>=1 with given result(53-32*1=21)result sequence:53>32= (1) 53-32=2121>16=(1) 21-16=5 5>>> 5 5>4=(1) 5-4=1 1>>> 1 1>=1=(1) 1-1=0so the result will be 110101(2)=32+16+4+1=53- Anonymous
June 09, 2018
dec2bin demo: KFW828- Anonymous
June 26, 2018
Thanks Tryhest for sharing your info and program.
- Anonymous
- Anonymous