Skip to content

Commit 5c3df29

Browse files
Update Divide Operator.py
With this approach, we encapsulate the division operation inside a class named DivisionOperation. The perform_division() method performs the division without using the / operator and returns the result. By using a class, we adhere to OOP principles, making the code more organized and maintainable.
1 parent eea2354 commit 5c3df29

File tree

1 file changed

+47
-44
lines changed

1 file changed

+47
-44
lines changed

Divide Operator.py

+47-44
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,49 @@
1-
# Python3 program to divide a number
2-
# by other without using / operator
3-
4-
# Function to find division without
5-
# using '/' operator
6-
def division(num1, num2):
7-
8-
if (num1 == 0): return 0
9-
if (num2 == 0): return INT_MAX
10-
11-
negResult = 0
12-
13-
# Handling negative numbers
14-
if (num1 < 0):
15-
num1 = - num1
16-
17-
if (num2 < 0):
18-
num2 = - num2
19-
else:
20-
negResult = true
21-
# If num2 is negative, make it positive
22-
elif (num2 < 0):
23-
num2 = - num2
24-
negResult = true
25-
26-
# if num1 is greater than equal to num2
27-
# subtract num2 from num1 and increase
28-
# quotient by one.
29-
quotient = 0
30-
31-
while (num1 >= num2):
32-
num1 = num1 - num2
33-
quotient += 1
34-
35-
# checking if neg equals to 1 then
36-
# making quotient negative
37-
if (negResult):
38-
quotient = - quotient
39-
return quotient
40-
41-
# Driver program
42-
num1 = 13; num2 = 2
43-
# Pass num1, num2 as arguments to function division
44-
print(division(num1, num2))
1+
class DivisionOperation:
2+
INT_MAX = float('inf')
453

4+
def __init__(self, num1, num2):
5+
self.num1 = num1
6+
self.num2 = num2
467

8+
def perform_division(self):
9+
if self.num1 == 0:
10+
return 0
11+
if self.num2 == 0:
12+
return self.INT_MAX
13+
14+
neg_result = False
15+
16+
# Handling negative numbers
17+
if self.num1 < 0:
18+
self.num1 = -self.num1
19+
20+
if self.num2 < 0:
21+
self.num2 = -self.num2
22+
else:
23+
neg_result = True
24+
elif self.num2 < 0:
25+
self.num2 = -self.num2
26+
neg_result = True
27+
28+
quotient = 0
29+
30+
while self.num1 >= self.num2:
31+
self.num1 -= self.num2
32+
quotient += 1
33+
34+
if neg_result:
35+
quotient = -quotient
36+
return quotient
37+
38+
39+
# Driver program
40+
num1 = 13
41+
num2 = 2
42+
43+
# Create a DivisionOperation object and pass num1, num2 as arguments
44+
division_op = DivisionOperation(num1, num2)
45+
46+
# Call the perform_division method of the DivisionOperation object
47+
result = division_op.perform_division()
48+
49+
print(result)

0 commit comments

Comments
 (0)