I would like to convert an integer into an array, so that it looks like the following:
int number = 123456 ;
int array[7] ;
with the result:
array[0] = 1
array[1] = 2
...
array[6] = 6
|
|
Perhaps a better solution is to work backwards:
|
|||
|
|
|
You can extract the last digit of the number this way:
Note that you should also check whether |
|||
|
|
|
just use modular arithmetic:
|
|||||||||||||
|
|
Take the log10 of the number to get the number of digits. Put that in, say What did you want to do with the sign if it's negative? |
|||
|
|
|
The easiest way I can imagine now is:
Additionally you can convert each digit to int just subtracting the char value by 0x30. EDIT: If this is a homework, your teacher you probably ask you to write the program using % operator though (example 12 % 10 = 2). If this is the case, good homework ;-) |
|||||||||||
|
|
You can use modulus to determine the last digit. And you can use division to move another digit to the last digit's place. |
|||
|
|
|
You can't simply "convert" it. The integer is not represented in software in decimal notation. So the individual digits you want don't exist. They have to be computed. So, given an arbitrary number, how can you determine the number of ones? We could divide by ten, and then take the remainder: For 123, the division would give 12, and then there's a remainder of 3. So we have 3 ones. The 12 tells us what we have past the ones, so it can be our input for the next iteration. We take that, divide by 10, and get 1, and a remainder of 2. So we have 2 in the tens place, and 1 left to work with for the hundreds. Divide that by 10, which gives us zero, and a remainder of 1. So we get 1 in the hundreds place, 2 in the tens place, and 3 in the ones place. And we're done, as the last division returned zero. |
|||
|
|
|
See SO question Language showdown: Convert string of digits to array of integers? for a C/C++ version (as well as other languages). |
|||
|
|
|
if this is really homework then show it your teacher - just for fun ;-) CAUTION! very poor performance, clumsy way to reach the effect you expect and generally don't do this at home(work) ;-)
|
|||
|
|