Computer Science Canada Help please |
Author: | JWHooper [ Sun Aug 26, 2007 1:39 am ] |
Post subject: | Help please |
I am a new user to programming C++. I want an written program that shows how to calculate two real numbers (in basic arithmetic operation(PEMDAS)), where a and b are real numbers. Thanks, J. |
Author: | rdrake [ Sun Aug 26, 2007 9:57 am ] |
Post subject: | RE:Help please |
You may find this topic of interest. |
Author: | CodeMonkey2000 [ Sun Aug 26, 2007 10:04 am ] |
Post subject: | RE:Help please |
Or just pick up a C++ textbook from your local library. This was our final project for grade 11 compsci. We had to make a BEDMAS calculator. We used pascal though. This is a string manipulation problem, you are going to be dealing with strings. |
Author: | Clayton [ Sun Aug 26, 2007 6:18 pm ] |
Post subject: | RE:Help please |
Stacks are good too, they can potentially help things along, depending on how proper you want your calculator to act. |