From d69b112716ae553f9309f59dbd6392e42f1ff597 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Wed, 13 Feb 2019 14:35:52 -0600 Subject: Fix variable names for clarity --- ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp') diff --git a/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp b/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp index e9fabaf..1a1ae4e 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, MN, Fed, GrossPay, NetPay; + double SSI, State, Fed, GrossPay, NetPay; cout << "How many hours did you work this week?: "; cin >> Hours; cout << "How many dependents do you have?: "; @@ -28,13 +28,13 @@ int main () { GrossPay = Hours * 16.78 + OT * 16.78 * 1.5; SSI = GrossPay * 0.06; Fed = GrossPay * 0.14; - MN = GrossPay * .05; - NetPay = GrossPay-SSI-Fed-MN-Health-10; //$10 union dues + State = GrossPay * .05; + NetPay = GrossPay-SSI-Fed-State-Health-10; //$10 union dues cout << fixed << setprecision(2) << "Your gross (before withholdings) pay is $" << GrossPay << "." << endl << "Social Security withholding: $" << SSI << endl << "Federal income tax withholding: $" << Fed << endl - << "State income tax withholding: $" << MN << endl + << "State income tax withholding: $" << State << endl << "Union Dues: $10" << endl << "Medical cost: $" << Health << endl -- cgit v1.2.3