#25_Arrays to objects and passing Objects as an Arguments in C++

 #include <iostream>

using namespace std;
//Arrays to objects and passing Objects as an Arguments
class complex
{
    int c1c2;

public:
    void setcomplex(int a1int a2)
    {
        c1 = a1;
        c2 = a2;
    }
    void sumcomplex(complex o1complex o2)
    {
        c1 = o1.c1 + o2.c1;
        c2 = o1.c2 + o2.c2;
        cout << "The sum of complex number is : " << c1 << " + " << c2 << "i" << endl;
    }
};
class employee
{
    int id;

public:
    void setId(void)
    {
        cout << "Enter your employee ID : ";
        cin >> id;
    }
    void displayId(void)
    {
        cout << "The ID of this employee is : " << id << endl;
    }
};
int main()
{
    complex o1o2sum;
    o1.setcomplex(25);
    o2.setcomplex(46);
    sum.sumcomplex(o1o2);
    employee google[5];
    for (int i = 0i < 5i++)
    {
        google[i].setId();
        google[i].displayId();
    }

    return 0;
}

Comments

Popular posts from this blog