Answer to Question #269662 in C++ for Egee

Question #269662

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.




1
Expert's answer
2021-11-22T09:54:33-0500
#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);
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS