Programming Problem 1 Write a program that calculates and outputs the monthly pa
ID: 3627215 • Letter: P
Question
Programming Problem 1Write a program that calculates and outputs the monthly paycheck information for an employee, including all the amounts deducted from an employee’s gross pay, and the net pay that is due to the employee. The user of your program will know the employee’s name and the gross pay for the employee. Each employee has the following deductions taken from his gross pay:
Federal Income Tax: 15%
State Tax: 3.5%
Social Security + Medicare Tax: 8.5%
Health Insurance $75
The output from your program should be structured as is displayed below:
Bill Robinson
Gross Amount: ............ $3575.00
Federal Tax: ............. $ 536.25
State Tax: ............... $ 125.13
Social Sec / Medicare: ... $ 303.88
Health Insurance: ........ $ 75.00
Net Pay: ................. $2534.75
Your program should deal with erroneous input values. Gross salary should always be a positive number. Make sure that you deal with the possibility that the user may have entered a non-numeric input value. Have your program output appropriate error messages in these cases.
1. Identify the inputs and outputs of the problem.
2. Identify the processing needed to convert the inputs to the outputs.
3. Design an algorithm in pseudocode to solve the problem. Make sure to include steps to get each input and to report each output. Include steps to deal with error cases.
4. Identify three test cases, one using a positive number, and one using a negative number, and one using incorrect input (ie. Input a letter rather than a digit for the numeric input). For each of the three test cases show what inputs you will use and what your expected outputs should be.
5. Write the program to implement your algorithm. Test your program using your test cases.
Explanation / Answer
#include<iostream>
#include<string>
using namespace std;
int main()
{
string name;
double grosspay,HealthInsurance = 75;
cout<<"Enter employee name: "<<endl;
getline(cin, name);
cout<<"Enter gross pay: "<<endl;
cin>>grosspay;
if(grosspay < 0)
{
cout <<"Invalid input";
system("pause");
}
double FederalIncomeTax = (grosspay * 0.15);
double StateTax = (grosspay *0.035);
double SocialSecurityAndMedicareTax(grosspay * 0.085);
cout<<"Employee name : $" << name<<endl;
cout<<" Gross Amount: $" << grosspay;
cout<<" Federal Tax: $"<< FederalIncomeTax;
cout<<" StateTax: $" << StateTax;
cout<<" SocialSecurity/MedicareTax: $" <<SocialSecurityAndMedicareTax;
cout<<" Health Insurance: $"<<HealthInsurance;
cout<<" Net pay : $" << (grosspay - FederalIncomeTax - StateTax - SocialSecurityAndMedicareTax - HealthInsurance);
system("pause");
return 0;
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.