Advertisements
Advertisements
प्रश्न
Create a menu-driven program using user-defined functions to implement a calculator that performs the following:
Basic arithmetic operations(+, -, *, /)
संक्षेप में उत्तर
उत्तर
Program:
#Asking for the user input
x = int(input("Enter the first number: "))
y = int(input("Enter the second number: "))
#printing the Menu
print("What would you like to do?")
print("1. Addition")
print("2. Subtraction")
print("3. Multiplication")
print("4. Division")
#Asking the user about the arithmetic operation choice
n = int(input("Enter your choice:(1-4) "))
#Calculation as per input from the user
if n == 1:
print("The result of addition:",(x + y))
elif n == 2:
print("The result of subtraction:",(x - y))
elif n == 3:
print("The result of multiplication:",(x * y))
elif n == 4:
print("The result of division:",(x / y))
else:
print("Invalid Choice")
shaalaa.com
Types of Module - From Statement
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?