Question: In C++: Write a program that performs addition, subtraction, multiplication, and division. It should first ask the user to choose which operation they wish to
In C++:
Write a program that performs addition, subtraction, multiplication, and division. It should first ask the user to choose which operation they wish to perform, then prompts the user for two numbers. The program should pass the two numbers to one of the following functions, depending on which operation the user selects: addition(), subtraction(), multiplication(), division().
Constraints:
1) Make sure not to allow zero as the second input when performing division.
2) Use appropriate data types considering all kinds of the numeric values a user can input.
3) Precision 2 decimal places.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
