This calculator program is designed to perform basic arithmetic operations including addition (+), subtraction (-), multiplication (*), and division (/). The calculator supports multiple operations chained together and evaluates the expression when the "=" button is pressed. The entire program is implemented using Linked List in C++ for efficient handling and manipulation of the input expressions.
- Supports addition, subtraction, multiplication, and division.
- Allows chaining of multiple operations.
- Uses Linked List for efficient expression management.
- Provides accurate results for complex expressions.
- Input the arithmetic expression using the supported operators.
- Press the "=" button to evaluate the expression.
- The result will be displayed immediately.
20 + 30 * 40 - 10 / 5 =
1218
2 + 3 - 4 * 2 / 6 + 4 - 9 + 10 - 9 =
-0.333334