
-----------------------------------
alexlilili
Fri Oct 03, 2008 1:22 pm

Need help!!!
-----------------------------------
The question is like:
Build a simple ?English language? calculator that does the following:
 takes three inputs from the keyboard, two of them single digits (0 to 9) and one a character from t
representing one of five operators: + (addition), - (subtraction), * (multiplication), / (division),
and % (modulus/remainder). Outputs the description of the operation in plain English, as well as the numeric result.

But i dont how can make "Outputs the description of the operation in plain English, as well as the numeric result"?  :?:  :?:  :?: 

plz help!!!

-----------------------------------
Insectoid
Fri Oct 03, 2008 1:24 pm

RE:Need help!!!
-----------------------------------
Please, name your thread appropriately. Nobody will help you with a title like this, especially as there is a sticky telling you not to.

-----------------------------------
[Gandalf]
Fri Oct 03, 2008 5:36 pm

RE:Need help!!!
-----------------------------------
I'm assuming something like:
int num1(5), num2(7);
std::string operator("plus");
std::cout 