From ffb2aae7def4eb34020dd512c74be1d76913c0a3 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Wed, 13 Feb 2019 14:37:44 -0600 Subject: One last time! --- ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp b/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp index 1a1ae4e..2de234c 100644 --- a/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp +++ b/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp @@ -14,7 +14,7 @@ using namespace std; int main () { int dependents, Hours; int OT = 0; int Health = 0; //Set values to zero to prevent problems - double SSI, State, Fed, GrossPay, NetPay; + double SocSec, State, Fed, GrossPay, NetPay; cout << "How many hours did you work this week?: "; cin >> Hours; cout << "How many dependents do you have?: "; @@ -26,13 +26,13 @@ int main () { Health=35; } GrossPay = Hours * 16.78 + OT * 16.78 * 1.5; - SSI = GrossPay * 0.06; + SocSec = GrossPay * 0.06; Fed = GrossPay * 0.14; State = GrossPay * .05; - NetPay = GrossPay-SSI-Fed-State-Health-10; //$10 union dues + NetPay = GrossPay-SocSec-Fed-State-Health-10; //$10 union dues cout << fixed << setprecision(2) << "Your gross (before withholdings) pay is $" << GrossPay << "." << endl - << "Social Security withholding: $" << SSI << endl + << "Social Security withholding: $" << SocSec << endl << "Federal income tax withholding: $" << Fed << endl << "State income tax withholding: $" << State << endl << "Union Dues: $10" << endl -- cgit v1.2.3