Breaking News

C++ Program To Multiply Two Numbers Using Class

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

Algorithm :

1.Start

2.Define A Class Product

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 product

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 product
{
           int a,b;
           Public :
                   Void getput()
                    {
                             cout<<"Enter Two Numbers           To Multiply :";
                             cin>>a>>b;
                                cout<<"Multiplication ="<<a*b;
                     }
};
void main()
{
       product p1; // object created for class
        p1.getput();
        getch();
}

No comments