I worked on a conversion that converts dollars to Euros and I had no idea how to get it to compile, I had all sorts of issues. Can someone look at my code and tell me what is wrong?
I had the bool IsNegative(dollartoEuros(float dollars)) before and it was going to determine whether the function was positive or negative, if negative then put a set of parantheses around it.
It looks like your isNegative function is trying to build a string to output instead of returning just a number or a true/false value? I'm not sure what requirements you have. I've modified your code a bit to have the function do the display itself.