Develop a program to solve simple computational problems using arithmetic expressions and use of each operator leading to simulation of a commercial calculator
ALGORITHM: PURPOSE : To simulate a calculator using arithmetic expressions INPUT: Enter num1 and num2 OUTPUT: Print the result of addition or subtraction or multiplication or division or modulus. START Step 1: [Enter first number] read num1 Step 2: [Enter Second number] read num2 Step 3:[Enter Choice] read choice Step 4:[To perform addition] if choice […]


