Guys help me to make this code:
A company has 10 employees, they all get paid on hourly basis. For each employee the
company keeps h employee name, number of hours worked every week. Every employee
gets paid weekly. Gross earning is calculated by multiplying number of hours worked by
pay per hour.
Some employees work more than 40 hours, those get overtime pay.
We need you to write a VB.net program to find out the total net earnings as follows:
A- Read employee name and how many hours an employee worked in the week
1- If hours worked is less or equal 40(≤40) hours, employee gets
Gross earning = hours worked * pay per hour
2- If Hours worked is more than 40 (≥40)hours, employee gets
Overtime Hours = hours worked - 40
Gross Earning1 = 40 * pay per hour
Gross Earning2 = Overtime Hours * (pay per hour * 1.5)
Gross Earning = Gross Earning1 + Gross Earning2
B- Find the Total Gross Earning which is calculated as follows:
Total Gross Earning = Gross Earning + allowances
C- Find the total net earning which is calculated as follows:
Total Net Earning = Total Gross Earning - deduction
Once you calculate the Total Net Earnings for each employee PRINT EMPLOYEE
NAME AND THE TOTAL NET EARNINGS
A company has 10 employees, they all get paid on hourly basis. For each employee the
company keeps h employee name, number of hours worked every week. Every employee
gets paid weekly. Gross earning is calculated by multiplying number of hours worked by
pay per hour.
Some employees work more than 40 hours, those get overtime pay.
We need you to write a VB.net program to find out the total net earnings as follows:
A- Read employee name and how many hours an employee worked in the week
1- If hours worked is less or equal 40(≤40) hours, employee gets
Gross earning = hours worked * pay per hour
2- If Hours worked is more than 40 (≥40)hours, employee gets
Overtime Hours = hours worked - 40
Gross Earning1 = 40 * pay per hour
Gross Earning2 = Overtime Hours * (pay per hour * 1.5)
Gross Earning = Gross Earning1 + Gross Earning2
B- Find the Total Gross Earning which is calculated as follows:
Total Gross Earning = Gross Earning + allowances
C- Find the total net earning which is calculated as follows:
Total Net Earning = Total Gross Earning - deduction
Once you calculate the Total Net Earnings for each employee PRINT EMPLOYEE
NAME AND THE TOTAL NET EARNINGS