I'm trying to convert a number from an integer into an another integer which, if printed in hex, would look the same as the original integer.
For example:
Convert 20 to 32 (which is 0x20)
Convert 54 to 84 (which is 0x54)
|
That is, treat the original number as if it was in hexadecimal, and then convert to decimal. |
||||
|
|
|
You could try something like this (the way you would do it on paper):
For the examples you have given this would calculate: 0*16^0+2*16^1=32 and 4*16^0+5*16^1=84 |
|||
|
|