Please describe the specific problems/doubts you are having, so we can provide bettter help.
In general, you will need a scanner to scan/parse the input string, and you will probably need to use postfix notation which will require the use of some LIFO (stack) structures.
Last Wiki Answer Submitted: March 27, 2009 5:30 pm by carlosdl63,535 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
you can use a stack to convert this expression to postfix expression and then you can calculate that postfix expression using push and pop to the stack.
you can use a stack to convert this expression to postfix expression and then you can calculate that postfix expression using push and pop to the stack.