Can someone point me into the right direction on how to make a function that allows the user to make calculations.
I'd like it to work as shown below:
java Calculate 8*8
the answer = 64
java Calculate 7+(8*2)
the answer = 23
The basic math operators are what I'd like to get working first, using parentheses is the next step.