How to convert a long number in base 10 to base 9 without converting to string ?
feedback
|
|
FWIW, all values are actually in base 2 inside your machine (I bet you already knew that). It only shows up as base 10 because string conversion creates string representations in base 10 (e.g. when you print), because methods like It follows that we should be easily able to change the output base to be something other than 10, and hence get string representations for the same value in base 9. In Java this is done by passing an optional extra base parameter into the
| |||
|
feedback
|
| |||||||||||||||
feedback
|
|
What does "convert to base 9 without converting to string" actually mean? Base-9, base-10, base-2 (binary), base-16 (hexadecimal), are just ways to represent numbers. The value itself does not depend on how you represent it. If you don't want to "convert to string" (I read this as meaning you are not concerned with the representation of the value), then what do you want to do exactly? | |||
|
feedback
|
|
You can't convert to base 9 without converting to string. When you write
you're making the implicit assumption that it's in base 10. If you want to interpret that as a base 9 number that's fine, but there's no way Java (or any other language I know of) is suddenly going to see it that way and so 8+1 will return 9 and not 10. There's native support for base 2, 8, 16 and 10 but for any other base you'll have to treat it as a string. (And then, if you're sure you want this, convert it back to a long) | |||||||
feedback
|
|
You have to apply the algorithm that converts number from one base to another by applying repeated modulo operations. Look here for a Java implementation. I report here the code found on that site. The variable
| |||||||||
feedback
|