#include #include void main () { const double FEDERAL = 0.15; const double FICA = 0.08; const double STATE = 0.032; int hours; double payPerHour,taxes,gpay,npay; cout << "\n\nPlease enter the hours worked --> "; cin >> hours; cout << "\nPlease enter your pay per hour --> "; cin >> payPerHour; cout << setprecision (2) << setiosflags(ios::showpoint|ios::fixed); gpay = hours * payPerHour; npay = gpay; cout << "\n\nGross pay : " << gpay; taxes = FEDERAL * gpay; npay -= taxes; cout << "\nFederal Tax : " << taxes; taxes = FICA * gpay; npay -= taxes; cout << "\nFICA : " << taxes; taxes = STATE * gpay; npay -= taxes; cout << "\nState tax : " << taxes; cout << "\n\nNet Pay : " << npay << "\n\n"; }