Skip to content
Snippets Groups Projects
Commit f33b4555 authored by DOAN Lancelot's avatar DOAN Lancelot
Browse files

correction issue

parent 249aeb6a
No related branches found
No related tags found
No related merge requests found
Pipeline #10598 passed
......@@ -72,7 +72,7 @@ public class CalcEngine
if (previousOperator == '+') {
displayValue = leftOperand + displayValue;
}
else {
else if (previousOperator == '-') {
displayValue = leftOperand - displayValue;
}
leftOperand = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment