Make a program that asks the user for the hours worked for the week and the hourly rate. The basic salary is computed as:
Salary = hours worked*hourly rate
Bonuses are given: Bonus of 500 pesos Bonus of 250 pesos Bonus of 150 pesos No. of hours > 45 No of hours > 40 and <= 45 No of hours > 35 and <= 40 Display the basic salary, bonus and the total salary (basic salary + bonus) for the week.
#include <iostream>
using namespace std;
int main()
{
double hours;
double rate;
do
{
cout << "\nEnter hours worked for the week for the woker (0 - exit): ";
cin >> hours;
if (hours == 0)
break;
cout << "Enter hourly rate for the woker: ";
cin >> rate;
cout << "The salary of worker is " << rate * hours;
} while (hours != 0);
}
Comments
Leave a comment