From fff3f3f155f0624c1fcd38db8ef19d9a85464891 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Wed, 13 Feb 2019 15:39:19 -0600 Subject: Meaningful comments --- ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 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 066d16a..7afd48e 100644 --- a/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp +++ b/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp @@ -20,10 +20,10 @@ int main () { cin >> Hours; cout << "How many dependents do you have?: "; cin >> Dependents; - if (Hours > 40) { - OT=Hours-40; //Overtime pay is time-and-a-half + if (Hours > 40) { //Every hour over 40 constitutes as overtime + OT=Hours-40; } - if (Dependents >= 3) { + if (Dependents >= 3) { //More than 3 dependents carries a fee Health=35; } GrossPay = Hours * 16.78 + OT * 16.78 * 1.5; -- cgit v1.2.3