how do i deal with negation? i mean for example:
- -(3 + 2) * -(9 / -3)
- -((((-4 + 5))))
when I convert it to Postfix form the result is:
- 3 2 + * - 9 / 3 - -
- 4 - 5 + -
but here when I evaluate each one it will give errors because of the minus, how do I solve this?