Write a program for addition of two number using class and object.​

Write a program for addition of two number using class and object.​

About the author
Arianna

1 thought on “Write a program for addition of two number using class and object.​”

  1. Answer:

    #include<iostream>

    using namespace std;

    class Add {

    public:

    int addition(int x, int y) {

    return x + y;

    }

    };

    int main() {

    int x, y, s;

    cout << “Enter two numbers:”;

    cin >> x >> y;

    Add obj;

    s = obj.addition(x, y);

    cout << “Sum of two numbers:” << s;

    return 0;

    }

    C++

    Output:

    Enter two numbers:10 20

    Sum of two numbers:30

    Reply

Leave a Reply to Samantha Cancel reply