Each employee has the following deductions taken from his


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 Here is the program I have designed: #include #include using namespace std; int main() { double grossPay; double FedralTax; double StateTax; double Social_midCare; double HealthInsurance; string name; cout<<"please enter the employee name"<>grossPay; if(grossPay<0) { while(grossPay<=0) { cout<<"sorry you entered a wrong Gross Pay information"<>grossPay; } } FedralTax=grossPay*(15.0/100) ; StateTax=(3.5/100)*grossPay; Social_midCare=(8.5/100)*grossPay; HealthInsurance=75; cout<

Request for Solution File

Ask an Expert for Answer!!
Other Subject: Each employee has the following deductions taken from his
Reference No:- TGS0655282

Expected delivery within 24 Hours