I was wondering if anyone could tell me how to append an integer (with another integer) in C++. Basically, if I have an int with this the value 67, how would I append it with the number 4 so the integer is now 674? Thanks in advance!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Multiply first by ten to the power of digit number of second and add the other . Example: 63 and 5
Example: 75 and 34
|
|||||||||||
|
|
|||||
|
|
|
|||||
|
|
Count the digits of the existing numbers, multiply by its tenth power and add to the second number. |
|||
|
|
Refactoring to reduce code duplication is left as an exercise for the reader. |
|||
|
|
|
Here's a more serious one:
This avoids floating-point math and string conversions. |
|||
|
|