This is a simple console-based Calculator Application implemented in C++. It provides basic arithmetic operations such as addition, subtraction, multiplication, division, and modulo. The application is interactive, user-friendly, and allows repeated use without restarting the program.
- Addition: Add multiple numbers.
- Subtraction: Subtract two numbers.
- Multiplication: Multiply multiple numbers.
- Division: Divide two numbers.
- Modulo: Find the remainder when dividing two numbers.
- Exit Option: Quit the application at any time.
-
Run the program.
-
Follow the menu instructions displayed on the screen.
-
Enter the corresponding character to select the desired operation:
- Press A or a for Addition.
- Press S or s for Subtraction.
- Press M or m for Multiplication.
- Press D or d for Division.
- Press O or o for Modulo.
- Press E or e to Exit.
-
For operations that require multiple numbers (e.g., Addition, Multiplication), you can input numbers one by one. Select whether to add/multiply more numbers or proceed with the result.
-
After completing an operation, you will be prompted to continue or exit.
- A C++ compiler (e.g., GCC, MSVC, etc.).
- Any terminal or console to run the compiled executable.
-> g++ main.cpp -o main
-> main.exe