-
Notifications
You must be signed in to change notification settings - Fork 234
/
ClassesDealingwithComplexNumbers.py
61 lines (51 loc) · 1.88 KB
/
ClassesDealingwithComplexNumbers.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
"""
Title : Classes: Dealing with Complex Numbers
Subdomain : Classes
Domain : Python
Author : Ahmedur Rahman Shovon
Updater : Imtiaz Ahmed
Created : 15 July 2016
Updated : 30 August 2022
Problem : https://www.hackerrank.com/challenges/class-1-dealing-with-complex-numbers/problem
"""
import math
class Complex:
def __init__(self, real, imaginary):
self.real = real
self.imaginary = imaginary
def __add__(self, no):
return Complex(self.real + no.real, self.imaginary + no.imaginary)
def __sub__(self, no):
return Complex(self.real - no.real, self.imaginary - no.imaginary)
def __mul__(self, no):
return Complex(
self.real * no.real - self.imaginary * no.imaginary,
self.real * no.imaginary + self.imaginary * no.real,
)
def __truediv__(self, no):
divider = no.real**2 + no.imaginary**2
return Complex(
(self.real * no.real + self.imaginary * no.imaginary) / divider,
(self.imaginary * no.real - self.real * no.imaginary) / divider,
)
def mod(self):
return Complex(math.sqrt(self.real**2 + self.imaginary**2), 0.00)
def __str__(self):
if self.imaginary == 0:
result = "%.2f+0.00i" % (self.real)
elif self.real == 0:
if self.imaginary >= 0:
result = "0.00+%.2fi" % (self.imaginary)
else:
result = "0.00-%.2fi" % (abs(self.imaginary))
elif self.imaginary > 0:
result = "%.2f+%.2fi" % (self.real, self.imaginary)
else:
result = "%.2f-%.2fi" % (self.real, abs(self.imaginary))
return result
if __name__ == "__main__":
c = map(float, input().split())
d = map(float, input().split())
x = Complex(*c)
y = Complex(*d)
print(*map(str, [x + y, x - y, x * y, x / y, x.mod(), y.mod()]), sep="\n")