Write a C++ program which calculate addition of two number with the help of class.

Program Code:
#include<iostream>
using namespace std;
class Add // Class declaration with class_name Add
{

private: // declaration of private data members a and b
int a;
int b;
public:
void addition( int x, int y) // member function of class Add with definition
{
a=x;
b=y;
int c = a+b;
cout << "Addition of a and b: " << c;
cout<<endl;
}
}; 
int main()
{
Add obj; // Object declaration of class Add
int x, y;
cout<<"Enter the value of x and y :";
cin>>x>>y;
cout<<endl;
obj.addition(x, y); // member function call with object and dot (.) operation.
return 0;
}


The program code is tested on www.jdoodle.com
Output:
Enter the value of x and y : 23 24
Addition of a and b: 47


Thanks
Mukesh Rajput
Mukesh Rajput

Mukesh Rajput

I am a Computer Engineer, a small amount of the programming tips as it’s my hobby, I love to travel and meet people so little about travel, a fashion lover and love to eat food, I am investing a good time to keep the body fit so little about fitness also..

Post A Comment:

0 comments: