Quote Originally Posted by GCDEF View Post
Following your design, you could have a GetAandC() function. After you find out which operation the user wants, set up an if or switch statement like
Code:
if(b == "*")
    Multiply();
else
if(b == "/")
    Divide();
...
Also, you really need to forget you've even heard of the goto statment. NO respectable C++ programmer would use it. Learn how to use while and for loops to repeat operations.

Also, when posting, please use CODE tags to preserve formatting.
It works and makes it neater. Thank you~
This program gave me the biggest headache last night, so thank you very much for the help