0% found this document useful (0 votes)
11 views6 pages

Group Members

The document defines a C++ class called Employee with members like ID, name, salary and functions to accept input and display an employee payslip. The display function outputs the employee details including ID, name, salary, HRA, DA, tax, and net salary.

Uploaded by

rohege4780
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views6 pages

Group Members

The document defines a C++ class called Employee with members like ID, name, salary and functions to accept input and display an employee payslip. The display function outputs the employee details including ID, name, salary, HRA, DA, tax, and net salary.

Uploaded by

rohege4780
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 6

Group 9 :

Write a C++ program to define a class employee having members Emp-id,


Emp-name, basic salary and functions accept() and display(). Calculate
DA=25% of basic salary, HRA=800, I-tax=15% of basic salary. Display the
payslip using appropriate output format.

Group Members :
PRANAVA SHARMA K : 4SN21AD036
PRATHVIRAJ :4SN21AD038
PREETHESH : 4SN21AD039
SUMANRAJ : 4SN21AD050
What is display() function?

• The Display Function Usage command shows a list of function identifiers. It can
also be used to show detailed usage information about a specific function,
including a list of user profiles with specific usage information for the function.
Program

#include<iostream>
using namespace std;
class Employee{
int eid;
char ename[100];
float basic_salary, hra, da, i_tax, net_salary;
public:
void accept_details() {
cout<<"\n Enter Employee Id : ";
cin>>eid;
cout<<"\n Enter Employee Name : ";
cin>>ename;
cout<<"\n Enter Basic Salary : ";
cin>>basic_salary;
hra = 800;
da = 0.25 * basic_salary;
i_tax = 0.15 * basic_salary;
net_salary = basic_salary + da + hra - i_tax;
}
void display_details() {
cout<<"\n ----------------------- ";
cout<<"\n Employee Id : "<<eid;
cout<<"\n Employee Name : "<<ename;
cout<<"\n Basic Salary : "<<basic_salary;
cout<<"\n HRA : "<<hra;
cout<<"\n DA : "<<da;
cout<<"\n I-Tax : "<<i_tax;
cout<<"\n Net Salary : "<<net_salary;
}
};
int main(){
Employee e;
e.accept_details();
e.display_details();
return 0;
}
Output :
THANK YOU

You might also like