C++ Program to add two numbers using class and object
In this program, You will learn how to add two numbers using class and object in C++.
class Add{
//statement
};
Example: How to add two numbers using class and object in C++.
#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;
}
Output:
Enter two numbers:10 20
Sum of two numbers:30