question archive Write and run a program that simulates a simple calculator
Subject:StatisticsPrice: Bought3
Write and run a program that simulates a simple calculator. It reads two integers and a char- acter. If the character is a +, the sum is printed; if it is a -, the difference is printed; if it is a *, the product is printed; if it is a /, the quotient is printed; and if it is a %, the remainder is printed. Use a switch statement.