Jitendra Kumar

Jitendra Kumar

  • NA
  • 189
  • 22k

Solving a postfix notation expression in c#

Aug 22 2018 12:45 AM

Practical Test
Evaluate Postfix
Question 1:
Copy the below content to a text file and run it through your solution:
1 1 +
2 -3 *
1 1 + 2 3 * -
1 3 / 2 *
10 1 2 + 2 + 5 + +
take a screenshot of the output you got from your program and include it in your zip that you upload to
our systems.
Your output should be:
2.0
-6.0
-4.0
0.666666666666667
20.0
In the text box below explain in plain English what your solution is doing. Also zip and upload your solution
Your Answer:

Answers (1)