This is a simple C++ program that functions as a basic calculator. It can perform addition, subtraction, multiplication, and division based on the operator and operands provided by the user.
- The program prompts the user to enter an operator (
+
,-
,*
,/
). - The program prompts the user to enter two operands.
- The program performs the calculation based on the operator and operands provided.
- The program outputs the result of the calculation.