Breaking News

C++ Program To Add Two Numbers Using Class

Before i showed you to add two numbers but now ill show you to add two numbers but by using class

Algorithm :

1.Start

2.Define A Class add

3.Get Input for two variables example a and b

4.Declare member function named getput()

5.In function getput() read two variables

6.After reading the variables print the result directly

7.In main function create an object for class add

8.Access the member functions of the class product through the object created for that particular class

9.Stop

Program :

#include<iostream.h>
#include<conio.h>
class add
{
           int a,b;
           Public :
                   Void getput()
                    {
                             cout<<"Enter Two Numbers           To Add :";
                             cin>>a>>b;
                             cout<<"Addition ="<<a+b;
                     }
};
void main()
{
        add a1; // object created for class
        a1.getput();
        getch();
}

No comments