write the pseudocode algorithim to represent the following write a basic calculator 5155687
Write the pseudocode (algorithim) to represent the following:
Write a basic calculator using switch case.
Input two numbers, num1 and num2 and an option:
a) When option “A” is entered add the two numbers together and print the result;
b) When option “S” is entered, subtract the two numbers from each other and print the result;
c) When option “M” is entered, multiply the two numbers with each other and print the result; and
d) When option “D” is entered, divide the two numbers and print the result;