Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

EXP8_1 #include<iostream.h> #include<conio.

h> class salary { long int ta,hra,da,sal; public: salary(int x=5000,int y=6000) { da=x; hra=y; } void accept() { cout<<"Daily allowance: "<<da; cout<<"\nHouse rent allowance: "<<hra; cout<<endl<<"Enter the Travel allowance"; cin>>ta; } void display() { sal=da+hra+ta; cout<<"Salary:"<<sal; } }; void main() { clrscr(); salary s; s.accept(); s.display(); getch(); }

Page 1

Print to PDF without this message by purchasing novaPDF (http://www.novapdf.com/)

You might also like