[solved] – Question 73872
2. Write a java program that will read an infix expression from the user, and print out the corresponding postfix expression.
Input: A + B * C
Output: A B C * +
Expert Answer
OR
2. Write a java program that will read an infix expression from the user, and print out the corresponding postfix expression.
Input: A + B * C
Output: A B C * +
OR