How do you convert a decimal number to mixed radix notation?
I guess that given an input of an array of each of the bases, and the decimal number, it should output an array of the values of each column.
|
How do you convert a decimal number to mixed radix notation? I guess that given an input of an array of each of the bases, and the decimal number, it should output an array of the values of each column.
| |||
|
feedback
|
|
Pseudocode:
| ||||
|
feedback
|
|
Number -> set:
And the reverse: If you have the number like 32(52), 5(7), 7(24), 45(60), 15(60), 500(1000) and you want this converted to decimal: Take number n, multiply it with the factor of n-1, continue for n-1..n=0
And you have the number. | |||||||||
feedback
|
|
I came up with a slightly different, and probably not as good method as the other ones here, but I thought I'd share anyway:
| |||
feedback
|