Implement the complex Numbers class that contains the following functions-
Constructor- You need to create the appropriate constructor.
Plus- This function adds two given complex numbers and updates the first complex number.
e.g. if c1 = 4+i5 and c2 = 3+i1 c1.plus(c2) results in : c1 = 7+i6 and c2 = 3+i1
Multiply- This function multiplies two given complex numbers and updates the first complex number.
e.g. if c1 = 4+i5 and c2 = 1+i2 c1.multiply(c2) results in : c1 = -6+i13 and c2 = 1+i2
Print- This function prints the given complex number in the following format: a+ib
Code with cisco - CwC 26 • Pending