CPP Programs / CPP Program for Employees Net Salary Calculation

Program Name Write a C++ program to read N employees data and compute Net salary of each employee
where DA is equal to 52% of Basic and Income Tax (IT) = 30% of the gross salary.
Program Code
Input
Employees Net Salary Calculation
Enter Number of employees 1
Employees Details
Employee Id: 1
Employee Name: wisdom
Employee basic salary: 99999
Output
Employees Details
Employee Id: 1
Employee Name: wisdom
Employee Netsalary: 106398.9375


Home     Back