Question
This is C++ :D C++ Console Calculator: Write a Program that displays repeatedly a menu as shown in the sample run below. The user can
This is C++ :D
C++ Console Calculator:
Write a Program that displays repeatedly a menu as shown in the sample run below. The user can enter 1, 2, 3, 4 or 5 for choosing addition, subtraction, multiplication, division or exit respectively.
After an operation is finished and output is displayed the menu is redisplayed, you may choose another operation or enter 5 to exit the program.
Each operation will ask the user for two numbers then calculate and display the answer.
Handle the division by zero situation, by displaying an Error Message if the user is trying to divide by 0.
Sample run:
Main Menu
1: Addition
2: Subtraction
3: Multiplication
4: Division
5: Exit
Enter a Choice: 1
Enter number 1: 5
Enter number 2: 4
The Answer is: 9
Main Menu
1: Addition
2: Subtraction
3: Multiplication
4: Division
5: Exit
Enter a Choice: 4
Enter number 1: 8
Enter number 2: 0
Impossible to divide by Zero.
Main Menu
1: Addition
2: Subtraction
3: Multiplication
4: Division
5: Exit
Enter a Choice: 5
Could you please be kind enough and type for me the code to copy and show me the screenshot? Thank you and have a good one!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started