0
Algorithm in JavaScript
how to calculate the number in base system? for example 1756 in 50 base system
1 Odpowiedź
0
I think it includes repeated divisions by the base value of the new base until the quotient is zero and the remainder at each step is stored.The last remainder value is the most significant digit whereas the first one is the least significant digit of the converted number.