Java Calculator
Supports PEDMAS order of computation and Reverse Polish Notation Gener
Generates the Reverse Polish Notation (Postfix) expression form of an arithmetic expression in (Infix) form.
Performs the computation of the arithmetic expression if Integers or Floating point numbers are used in the expression.
Supports PEDMAS order of computation, thus, all the operators of Exponentiation, Division, Multiplication, Addition and Subtraction, as well as using Parentheses for grouping and prioritization is all handled.