हिंदी

Write a program to input two complex numbers and to find sum of the given complex numbers.

Advertisements
Advertisements

प्रश्न

Write a program to input two complex numbers and to find sum of the given complex numbers.

कोड लेखन
Advertisements

उत्तर

Add the real parts and add the imaginary parts of the two complex numbers.

real1 = int(input("Enter real part of first complex number: "))
imag1 = int(input("Enter imaginary part of first complex number: "))
real2 = int(input("Enter real part of second complex number: "))
imag2 = int(input("Enter imaginary part of second complex number: "))

real_sum = real1 + real2
imag_sum = imag1 + imag2

print("Sum =", real_sum, "+", imag_sum, "i")
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 1: Review of Phython - EXERCISE [पृष्ठ २७]

APPEARS IN

सीबीएसई Computer Science with Python [English] Class 12
अध्याय 1 Review of Phython
EXERCISE | Q 16. | पृष्ठ २७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×