Question: Please use a C++ code You are to implement a calculator program using a switch statement based on the operator that is read as input.
Please use a C++ code

You are to implement a calculator program using a switch statement based on the operator that is read as input. The program should include a prompt that prints the following menu on the output screen: "Welcome to my simple calculator. Please select one of the operations and enter the symbol associated with the operation. + addition - substraction * multiplication I division % modulus " The program should use all integer values, operand1, operand2, and resultValue. The operator should be a character. Your program should print out the prompt, " The result value is " and the value contained in resultValue. Please submit the source program as specified in the submission note below. Below is a sample branch of the if else if statement: // menu printed cin >> op; // operator if (op == '+') \{ cout operand1 > operand2; resultValue = operand 1+ operand2; cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
