it is reverse POLISH notation :nerdy-face:

This commit is contained in:
2026-01-11 02:54:43 +05:00
parent 490dc23027
commit 8f065abb81
2 changed files with 4 additions and 4 deletions

View File

@@ -144,7 +144,7 @@
{
if (currentOperand != "") equation.Add(new Token(Token.TokenType.Operand, currentOperand));
buttonEquals.Text = "#";
currentOperand = ReverseNotationSolver.Solve(equation);
currentOperand = ReversePolishNotationSolver.Solve(equation);
UpdateLabels();
}
}