-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.17.1.py
62 lines (45 loc) · 1.5 KB
/
1.17.1.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
"""Implement the simple methods getNum and
getDen that will return the numerator and denominator of a fraction."""
def gcd(m,n):
while m%n != 0:
oldm = m
oldn = n
m = oldn
n = oldm%oldn
return n
class Fraction:
def __init__(self,top,bottom):
self.num = top
self.den = bottom
def __str__(self):
return str(self.num)+"/"+str(self.den)
def show(self):
print(self.num,"/",self.den)
def __add__(self,otherfraction):
newnum = self.num*otherfraction.den + \
self.den*otherfraction.num
newden = self.den * otherfraction.den
common = gcd(newnum,newden)
return Fraction(newnum//common,newden//common)
def __eq__(self, other):
firstnum = self.num * other.den
secondnum = other.num * self.den
return firstnum == secondnum
def __mul__(self, other):
topfactor = self.num * other.num
bottomfactor = self.den * other.den
common = gcd(topfactor, bottomfactor)
return Fraction(topfactor // common, bottomfactor // common)
def __truediv__(self, other):
topdiv = self.num * other.den
bottomdiv = self.den * other.num
common = gcd(topdiv, bottomdiv)
return Fraction(topdiv // common, bottomdiv // common)
#TODO def __gt__(self, other):
def getNum(self):
return self.num
def getDen(self):
return self.den
x = Fraction(5,6)
y = Fraction(2,3)
print(x.getDen())