Computer Science, asked by haseenullahkhan777, 3 months ago

write a program which calculates and displays the Pay of an employee A. The employee is paid on the basis of number of hours he/she works for. Regular duration of work is 40 hours . Basic pay for regular hours of work is calculated at the rate of 600 Rs. per hour . Consider an employee has worked 45 hours .The pay rate for each overtime hour is 300 Rs. per hour . Use with proper naming conventions​

Answers

Answered by Anonymous
2

Implementation

C++ Program

/*

Write a C++ program to read data of N employee and computer net salary of each employee

(DA = 52% of Basic and IT = 30% of the gross salary)

*/

#include<iostream.h>

#include<conio.h>

class Employee

{

char emp_name[30];

int emp_number;

float basic, da, it, gross_salary, net_salary;

public:

void read_emp_details(int count){

cout<<"\n\n*** Enter Employee "<<count<<" Details ***";

cout<<"\nEmployee Number: ";

cin>>emp_number;

cout<<"Employee Name: ";

cin>>emp_name;

cout<<"Basic Salary: ";

cin>>basic;

cout<<"\n---- Employee "<<count<<" Datails are saved ----\n\n";

}

float find_net_salary(){

da = basic * 0.52;

gross_salary = basic + da;

it = gross_salary * 0.30;

net_salary = (basic + da) - it;

return net_salary;

}

void display_emp_details(int count){

cout<<"\n\n*** Employee "<<count<<" Details ***\n";

cout<<"\nEmployee Number : "<<emp_number;

cout<<"\nEmployee Name : "<<emp_name;

cout<<"\nNet Salary: "<<net_salary;

cout<<"\n--------------------------\n";

}

};

int main(){

Employee emp[100];

int number_of_emp, count;

clrscr();

cout<<"\nPlease enter the number of Employees (Max. 100): ";

cin>>number_of_emp;

for(count=0; count< number_of_emp; count++){

emp[count].read_emp_details(count+1);

}

for(count=0; count < number_of_emp; count++){

emp[count].find_net_salary();

}

for(count=0; count < number_of_emp; count++){

emp[count].display_emp_details(count+1);

}

cout<<"\nPress any key to close!!!";

getch();

return 0;

}

bts \: exo

Attachments:
Similar questions