-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.17.4.py
98 lines (68 loc) · 2.23 KB
/
1.17.4.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
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 / gcd(top, bottom)
self.den = bottom / gcd(top, 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
return Fraction(newnum, newden)
def __sub__(self, otherfraction):
newnum = self.num*otherfraction.den - self.den*otherfraction.num
newden = self.den * otherfraction.den
return Fraction(newnum, newden)
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
return Fraction(topfactor, bottomfactor)
def __truediv__(self, other):
topdiv = self.num * other.den
bottomdiv = self.den * other.num
return Fraction(topdiv, bottomdiv)
def __gt__(self, other):
firstnum = self.num * other.den
secondnum = other.num * self.den
return firstnum > secondnum
def __ge__(self, other):
firstnum = self.num * other.den
secondnum = other.num * self.den
return firstnum >= secondnum
def __lt__(self, other):
firstnum = self.num * other.den
secondnum = other.num * self.den
return firstnum < secondnum
def __le__(self, other):
firstnum = self.num * other.den
secondnum = other.num * self.den
return firstnum <= secondnum
def __ne__(self, other):
firstnum = self.num * other.den
secondnum = other.num * self.den
return firstnum != secondnum
def getNum(self):
return self.num
def getDen(self):
return self.den
x = Fraction(1,3)
y = Fraction(2,3)
print(x.getDen())
print(x * y)
print(x + y)
print(y - x)
print(x > y)
print(y > x)