Computer Science, asked by natimughal, 5 months ago

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, Itax=15% of basic salary. Display the payslip using appropriate output format.

Answers

Answered by anjalyjangid2903
0

#include<iostream.h>

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;

}

Similar questions