Program for the addition of two complex numbers in CPP (C plus plus)
In this tutorial, we will learn about Program for the addition of two complex numbers in CPP (C plus plus).
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 | #include <iostream> using namespace std; typedef struct complex { float real; float imaginary; } complexNumber; complexNumber addComplexNumbers(complex, complex); int main() { complexNumber num1, num2, temporaryNumber; char signOfImag; cout<<"1st complex number: "<< endl; cout<<"Please enter real & imaginary parts respectively: "<<endl; cin>>num1.real >> num1.imaginary; cout<<endl<<"2nd complex number: "<<endl; cout<<"Please enter real and imaginary parts respectively:" <<endl; cin>>num2.real>>num2.imaginary; signOfImag = (temporaryNumber.imaginary > 0) ? '+' : '-'; temporaryNumber.imaginary = (temporaryNumber.imaginary > 0) ? temporaryNumber.imaginary : -temporaryNumber.imaginary; temporaryNumber = addComplexNumbers(num1, num2); cout<<"Sum = "<< temporaryNumber.real<<" "<<temporaryNumber.imaginary<<"i"; return 0; } complexNumber addComplexNumbers(complex num1,complex num2) { complex tmp; tmp.real = num1.real+num2.real; tmp.imaginary = num1.imaginary+num2.imaginary; return(tmp); } |
Output:
