forked from AngelOnFira/ccss-git-workshop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalculations.py
64 lines (54 loc) · 1.56 KB
/
calculations.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# ben carwana's function
# this should take the input and then apply these steps
# num1 - num2 + num3
# please return the result
def ben_carwana_function(num1, num2, num3):
pass
# ben karstad's function
# this should take the input and then apply these steps
# num1 * num2 + num3
# please return the result
def ben_karstad_function(num1, num2, num3):
pass
# matt bobel's function
# this should take the input and then apply these steps
# num1 * num2 * num3
# please return the result
def matt_bobel_function(num1, num2, num3):
pass
# anders's function
# this should take the input and then apply these steps
# num1 - num2 - num3
# please return the result
def anders_function(num1, num2, num3):
pass
# mcloving's function
# this should take the input and then apply these steps
# num1 * num2 + num3
# please return the result
def mcloving_function(num1, num2, num3):
pass
# andrew's function
# this should take the input and then apply these steps
# num1 * num2 * num3
# please return the result
def andrew_function(num1, num2, num3):
pass
# david's function
# this should take the input and then apply these steps
# num1 * num2 - num3
# please return the result
def david_function(num1, num2, num3):
pass
# shivan's function
# this should take the input and then apply these steps
# num1 * num2 * num3
# please return the result
def shivan_function(num1, num2, num3):
pass
# tyler's function
# this should take the input and then apply these steps
# num1 - num2 - num3
# please return the result
def tyler_function(num1, num2, num3):
pass