Answer to Question #269657 in C++ for Jhay

Question #269657

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-21T17:33:26-0500
#include<iostream>
using namespace std;
int main(){
	cout<<"Enter hours worked for the week\n";
	int n;
	cin>>n;
	cout<<"Enter the hourly rate\n";
	int hour;
	cin>>hour;
	int salary =  n *hour;
	int bonus = 0;
	if(n>45){
		bonus = 500;
	}
	else if(n>40 && n<=45){
		bonus = 250;
	}
	else if(n>35 && n<=40){
		bonus = 250;
	}
	cout<<"The total salary is "<<salary + bonus<<endl;
}

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