Esempio n. 1
0
        static void Main(string[] args)
        {
            string expression = GetExpression(out double start, out double step, out double end);

            var rpn = new RPN();
            var answerDictionary = rpn.GetAnswer(expression, out string strRPN, start, step, end);

            ConsoleWriter.OutData(expression, strRPN, answerDictionary);
        }