Think I have an integer array like this: a[0]=60; a[1]=321; a[2]=5; now I want to convert the whole of this array into an integer number, for example int b become 603215 after running the code. How to do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use a
Note that in C++11 that mildly ugly loop can be replaced with this:
Also, seeing as how there is a good possibility of overflow, the string form of the number can be accessed with |
||||
|
|
|
Concat all the numbers as a string and then convert that to number
|
|||||
|
|
This algorithm will work:
|
|||||
|
finalNumber has a result: 603215 |
|||||||||||||||||||||
|
stringstreamsolution seems simpler. – juanchopanza Jun 26 '12 at 5:37