Base 10 conversion

Language: Javascript with p5.js library

This is a simple program that animates the algorithm to convert a base 10 number into any other number. This program uses the technique of successive division to convert from a base 10 number into a chosen base.

The general algorithm is that you start with a number. You divide this number and keep track of the quotient as well as the remainder. The remainder is key as this makes up the digits or symbols used in the nuw bases number. The next step is to re-divide the quotient by the new abse again. you repeat this step keeping the quotient and remainder. the first remainder kept is the least significant bit or number. the last reaminder you get is the most significant bit or digit. The new number is read from Most significant to least significant. Use the application to convert any number you want.