[try Beta version]
Not logged in

 
Sum calculation (string)

Nov 26, 2016 at 10:01pm
They ask me a function that has to make this, example:
//Input: (+ 10 5)
//Output: 15

//Input: (+ (+ 2 3) (+ 3 1))
//Output: 9

I have think of two functions, one for the recursive of the string:

string recursive(string phrase)

And another one for the sum, that only sums two numbers.

Those anyone know how to start with the recursive function, on how to detect the parenthesis and the order to call the recursive function to return the right value.

Thanks a lot.
Nov 27, 2016 at 12:17am
You might want to have a look at this: http://www.cplusplus.com/forum/beginner/202782/#msg964731
Topic archived. No new replies allowed.