How do I get what the digits of a number are in C++ without converting it to strings or character arrays?
|
|
The following prints the digits in order of ascending significance (i.e. units, then tens, etc.):
|
|||||||||||||||||
|
|
What about With n digits and using base b you can express any number up to: pow(n,b)-1. So to get the number of digits of a number x in base b you can use the inverse function of exponentiation: base-b logarithm. To deal with non-integer results you can use the floor()+1 trick. PS: This works for integers, not for numbers with decimal (in that case you should know what's the precision of the type you are using). |
||||
|
Since everybody is chiming in without knowing the question.
|
|||||||||||
|
|
You want to some thing like this?
|
|||||||||||||||
|
|
I have seen many answers, but they all forgot to use My solution is based on this one by Naveen.
|
|||
|
|
|
Something like this:
The mod 10's will get you the digits. The div 10s will advance the number. |
|||||||||||
|
|
Integer version is trivial:
|
|||
|
|
|
First digit (least significant) = num % 10, second digit = floor(num/10)%10, 3rd digit = floor(num/100)%10. etc |
|||||
|
|
Years ago, in response to the above questions I would write the following code:
I think that the function printf(...) does something like that. Now I will write this:
Advantages:
lookup table indipendent;
C,C++,Java,JavaScript,PHP compatible;
get number of digits, |
|||
|
|
|
Those solutions are all recursive or iterative. Might a more direct approach be a little more efficient? Left-to-right:
Right-to-left:
|
||||
|
|
|
Use a sequence of mod 10 and div 10 operations (whatever the syntax is in C++) to assign the digits one at a time to other variables. In pseudocode
etc... painful! ... but no strings or character arrays. |
||||
|
|
|
Not as cool as Martin York's answer, but addressing just an arbitrary a problem: You can print a positive integer greater than zero rather simply with recursion:
This will print out the least significant digit last. |
|||
|
|
|
Get all the individual digits into something like an array - two variants:
|
|||
|
|
|
simple recursion:
|
|||
|
|