Question: C++ program flow chart Objectives by the end of the experiment the student should be able to use switch case Task: Write a simple program

Objectives by the end of the experiment the student should be able to use switch case Task: Write a simple program based on the use of Switch Case that is similar to a calculator. You need to ask the user to enter the operation: Morm for multiplication, N1 N2 Dord for division, N1/N2 A or a for addition, N1 + N2 Sors for subtraction, N1-N2 Lor I for modulus N1%N2| The user also should enter the two numbers that the operation will be done on. The job of the program is to calculate the result and to print it for the user. The user also should enter the two numbers that the operation will be done on. The job of the program is to calculate the result and to print it for the user. Example: If the user enters A with 3 and 4 for the numbers, the output should be: The result of adding 3 with 4 is 7 Example: If the user enters s with 3 and 4 for the numbers, the output should be: The result of subtracting 3 from 4 is -1 Note: submit your flow chart design, code and results. Objectives by the end of the experiment the student should be able to use switch case Task: Write a simple program based on the use of Switch Case that is similar to a calculator. You need to ask the user to enter the operation: Morm for multiplication, N1 N2 Dord for division, N1/N2 A or a for addition, N1 + N2 Sors for subtraction, N1-N2 Lor I for modulus N1%N2| The user also should enter the two numbers that the operation will be done on. The job of the program is to calculate the result and to print it for the user. The user also should enter the two numbers that the operation will be done on. The job of the program is to calculate the result and to print it for the user. Example: If the user enters A with 3 and 4 for the numbers, the output should be: The result of adding 3 with 4 is 7 Example: If the user enters s with 3 and 4 for the numbers, the output should be: The result of subtracting 3 from 4 is -1 Note: submit your flow chart design, code and results
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
