Di Posting Oleh : Crew Blog
Kategori : C Plus Plus Solutions
Before i showed you to find remainder of two numbers but now ill show you to find remainder two numbers but by using class
Remainder means the last ans which we get while dividing
Algorithm :
1.Start
2.Define A Class remainder
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 remainder
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 remainder
{
int a,b;
Public :
Void getput()
{
cout<<"Enter Two Numbers To Find Remainder :";
cin>>a>>b;
cout<<"Remainder ="<<a%b;
}
};
void main()
{
remainder r1; // object created for class
ar1.getput();
getch();
}