#include<iostream.h>
#include<conio.h>
class currency
{
private:
int rupees;
float paise;
public:
void read ( )
{
cout<<"\n Rupees in integer is:";
cin >> rupees;
cout<<"\n Paise in Real is:" ;
cin >> paise;
}
void assign (int rs, float ps)
{
rupees = rs ;
paise = ps ;
}
void display ( )
{
cout<<"\n Rs."<<rupees<< "Ps." <<paise<<endl ;
}
} ;
void main ( )
{
clrscr();
currency c1, c2 ;
c1.assign (15, 3.75);
c2.read ( );
cout<<"\n First Amount is:" ;
c1.display ( );
cout<<"\n Second Amount is:";
c2.display ( );
getch ( ) ;
}
Dinesh Thakur holds an B.SC (Computer Science), MCSE, MCDBA, CCNA, CCNP, A+, SCJP certifications. Dinesh authors the hugely popular Computer Notes blog. Where he writes how-to guides around Computer fundamental , computer software, Computer programming, and web apps. For any type of query or something that you think is missing, please feel free to Contact us.
Related Articles
Basic Courses
Advance Courses