Skip to content

Commit 24dd8d1

Browse files
Simple Calculator
1 parent b03bbaf commit 24dd8d1

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

oryx-build-commands.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
PlatformWithVersion=Python
2+
BuildCommands=conda env create --file environment.yml --prefix ./venv --quiet
+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Define functions for each operation
2+
def add(x, y):
3+
return x + y
4+
5+
def subtract(x, y):
6+
return x - y
7+
8+
def multiply(x, y):
9+
return x * y
10+
11+
def divide(x, y):
12+
return x / y
13+
14+
# Display the options to the user
15+
print("Select operation:")
16+
print("1. Add")
17+
print("2. Subtract")
18+
print("3. Multiply")
19+
print("4. Divide")
20+
21+
while True:
22+
# Take input from the user
23+
choice = input("Enter choice (1/2/3/4): ")
24+
25+
# Check if the choice is one of the four options
26+
if choice in ('1', '2', '3', '4'):
27+
try:
28+
num1 = float(input("Enter first number: "))
29+
num2 = float(input("Enter second number: "))
30+
except ValueError:
31+
print("Invalid input. Please enter a number.")
32+
continue
33+
34+
if choice == '1':
35+
print(f"{num1} + {num2} = {add(num1, num2)}")
36+
elif choice == '2':
37+
print(f"{num1} - {num2} = {subtract(num1, num2)}")
38+
elif choice == '3':
39+
print(f"{num1} * {num2} = {multiply(num1, num2)}")
40+
elif choice == '4':
41+
print(f"{num1} / {num2} = {divide(num1, num2)}")
42+
43+
# Check if the user wants another calculation
44+
next_calculation = input("Do you want to perform another calculation? (yes/no): ")
45+
if next_calculation.lower() != 'yes':
46+
break
47+
else:
48+
print("Invalid input")
49+

0 commit comments

Comments
 (0)