Write it using Visual Studio C Language. Problem 1 Workers at a particular compa
ID: 3734921 • Letter: W
Question
Write it using Visual Studio C Language.
Problem 1
Workers at a particular company have won a 7.6% pay increase retroactive for 6 months. Write a program that takes an employee's previous annual salary as input and outputs the amount of retroactive pay due to the employee, the new annual salary and the new monthly salary. Use a variable declaration with the modifier const to express the pay increase. Your program should allow the calculation to be repeated as often as the user wishes.
Retroactive - taking effect from a date in the past
Sample output as follows:-
Enter current annual salary: 100000
Program should return new annual salary, monthly salary, and retroactive pay.
new annual salary 107600
new monthly salary 8966.67
retroactive salary due: 3800
Problem 2
An employee is paid at a rate of $16.78 per hour for the first 40 hours worked in a week. Any hours over that are paid at the overtime rate of one-and-a-half times that. From the worker's gross pay, 6% is withheld for Social Security tax. 14% is withheld for state income tax and $10 per week is withheld for union dues. If the worker has three or more dependents, then an additional $35 is withheld to cover the extra cost of health insurance beyond what the employee pays.
a) Write a program that will read in the number of hours worked in a week and the number of dependants as input and will then output the worker's gross pay, each withholding amount, and the net take-home pay for the week.
b) Modify your program so that it allows the calculation to be repeated as often as the user wishes. User enters the sentinel value -1 to terminate the program. Save this with a different filename from part (a).
Problem 3
The following flowchart contains a series of questions to determine what kind of haircut to get. Write a program that asks the questions to the user and outputs the recommended haircut.
Explanation / Answer
Please find my answer of Problem 1
Please repost others in separate post as per Chegg policy, post one question per post.
Dear,
Use Visual studio 2010 C++ to run this program:
#include <iostream>
using namespace std;
//pay increase retroactive per months
const double INCREASE=1.23;
//Function prototype
void calculate(double previous_salary,int months)
{
double new_salary, pay_raise;
pay_raise=((previous_salary/100)*INCREASE)/months;
new_salary = previous_salary+(pay_raise*months);
cout << "Your new yearly salary is " << new_salary<< " dollars for this year. ";
}
int main( )
{
//pay increase retrper 6 months
const double PAY_INCREASE = 7.6;
double previous_salary;
double new_salary, pay_raise;
int months;
cout << "Enter employee's previous annual salary: ";
cin >> previous_salary;
cout<<"Enter number of months to calculate the new salary:"<<endl;
cin>>months;
calculate(previous_salary,months);
system("pause");
return 0;
}
Please let me know in case of any issue
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.