-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram to Add N Complex Numbers.py
65 lines (47 loc) · 1.53 KB
/
Program to Add N Complex Numbers.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
class Complex:
def __init__(self, realp=0, imagp=0):
self.realp = realp
self.imagp = imagp
def setComplex(self, realp, imagp):
self.realp = realp
self.imagp = imagp
def readComplex(self):
self.realp = int(input("Enter the real part: "))
self.imagp = int(input("Enter the imaginary part: "))
def showComplex(self):
print('(', self.realp, ')', '+i', '(', self.imagp, ')', sep="")
def addComplex(self, c2):
c3 = Complex()
c3.realp = self.realp + c2.realp
c3.imagp = self.imagp + c2.imagp
return c3
def add2Complex(a, b):
c = a.addComplex(b)
return c
def main():
c1 = Complex(3, 5)
c2 = Complex(6, 4)
print("Complex Number 1")
c1.showComplex()
print("Complex Number 2")
c2.showComplex()
c3 = add2Complex(c1, c2)
print("Sum of two Complex Numbers")
c3.showComplex()
# Addition of N (N >= 2) complex numbers
compList = []
num = int(input("\nEnter the value for N: "))
for i in range(num):
print("Object", i + 1)
obj = Complex()
obj.readComplex()
compList.append(obj)
print("\nEntered Complex numbers are:")
for obj in compList:
obj.showComplex()
sumObj = Complex()
for obj in compList:
sumObj = add2Complex(sumObj, obj)
print("\nSum of N complex numbers is", end=" ")
sumObj.showComplex()
main()