This blog is about providing theory as well as simple executable codes of different programming languages such as java, C, C++, and web programming, etc. This blog will be helpful to the IT students to learn about programming.

Showing posts with label Write a program to add two complex numbers of two different classes.. Show all posts
Showing posts with label Write a program to add two complex numbers of two different classes.. Show all posts

Monday, February 27, 2023

Write a program to add two complex numbers of two different classes.

February 27, 2023 0
 Here's a program to add two complex numbers of two different classes:#include <iostream>using namespace std;class Complex1 {private:    double real;    double imag;public:    Complex1(double r = 0, double i = 0) {        real = r;        imag = i;    }    void display() {        cout << real << " + " << imag << "i"...

Slider Widget