Design and implement an interactive calculator that provides a menu-driven interface for users to select and perform various mathematical operations.
The main objective is to create a user-friendly calculator that allows users to select from a variety of mathematical operations via a menu, input the required values, and receive accurate results.
The calculator should also provide option to exit the application.
Choose from below options:
Addition: Press 1
Subtraction: Press 2
Multiplication: Press 3
Division: Press 4
Exit: Press 5
- Prompt the user with Choices.
- Accept the choice from user.
- Based on the choice ask user for appropriate inputs
- Display the result.
- Exit the application
- Use proper naming conventions.
- Use meaningful names for program elements.
- Use proper spacing and indentation for better readability of code.
- Do not use comma seprated variable declaration.