The government’s quest to fight COVID-19 has led to the establishment of a PPE production factory in the Greater Accra region. The factory is classified as a high-risk working environment and the workers are paid an hourly rate of GHs 30 for regular hours per week and any extra hours are paid one and one-half times that. A total of 40 hours should be the normal hours and a maximum of 20 overtime hours for a week. From the worker’s gross pay, 6% is withheld for social security. 7% is withheld for tax and 3% is held for union dues. If the worker has dependents, the government pay 5.5% of the weekly wage per dependent up to 3 dependents into an insurance account. Write a program that will:
a) Request for the number of hours worked in a week, and the number of dependents.
#include <iostream>
int main()
{
int worked_hours, dependents;
std::cout<<"Enter worked hours: ";
std::cin>>worked_hours;
std::cout<<"Enter the number of dependents: ";
std::cin>>dependents;
}
Comments
Leave a comment