SIR LATUNA

Click here to edit subtitle

CLASS LESSONS

C++ PROGRAMMING

ACTIVITY NO.4   

TITLE : PAYROLL SYSTEM


Write a c++ program that compute a simple Payroll System.

Input the following:

  Date
  Employees Number
  Employees Last Name
  Employees First Name
  Employees MI
  Department
  Position
  Number of Days Worked
  Rate Per Day
  Deductions:
   - SSS
   - Pag-ibig
   - PhilHealth
   - Others

Compute the employee's Net Pay using the formula:

      Total Deduction = SSS + Pag-ibig + PhilHealth + Others
    Basic Pay = Number of hours worked * Rate Per Day
    Net Pay = Basic Pay - total Deduction

Display the following Data :

   Date
   Employees Number
   Employees Name (First Name, Last Name, MI)
   Department
   Position
   Total Deduction
   Basic Pay
   Net Pay