Write a program in C++ to add and multiply complex numbers using constructors?
Answers
Answered by
0
Answer:
2
3
4
5
6
7
// my first program in C++ #include <iostream> int main() { std::cout << "Hello World!"; }
Explanation:
hi
Answered by
0
Answer:
cout<<"\n\tEnter the real and imaginary part of number 2:\n\t"; cin>>b>>c; Complex c3(b,c); //Calling parameterised constructor for different values. Complex c4=sum(c2,c3); //Calling copy constructor
Similar questions