Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a basic calculator program #273

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions Calculator/calculator.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Add function
def add(x,y):
return x + y

#Subtract function
def subtract(x,y):
return x - y

#Multiply Function
def multiply(x, y):
return x * y

#Divide Function
def divide(x,y):
return x / y

#Main Function
def main():
print("Welcome to the Basic Calculator!")
x = int(input("Enter an integer: "))
y = int(input("Enter another integer: "))

computation = input("Do you want to Add, Multiply, Subtract, or Divide the numbers?: ")


if computation.lower() == "add":
print(add(x,y))
elif computation.lower() == "multiply":
print(multiply(x,y))
elif computation.lower() == "divide":
print(divide(x,y))
else:
print(subtract(x,y))

main()