From 6e20db5d66b7bb10b6bb4df52fcf718d8aa0e159 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Wed, 13 Feb 2019 15:27:57 -0600 Subject: Finish lab --- ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 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 2de234c..066d16a 100644 --- a/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp +++ b/ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp @@ -7,22 +7,23 @@ Term: Spring 2019 Lab/assignment number: Workout Short Program Description: Pay Stub Calculator */ + #include #include using namespace std; int main () { - int dependents, Hours; - int OT = 0; int Health = 0; //Set values to zero to prevent problems + int Dependents, Hours; + int OT = 0; int Health = 0; //Set values to zero to prevent problems double SocSec, State, Fed, GrossPay, NetPay; cout << "How many hours did you work this week?: "; cin >> Hours; cout << "How many dependents do you have?: "; - cin >> dependents; + cin >> Dependents; if (Hours > 40) { - OT=Hours-40; //Overtime pay is extra so it needs to be seperate + OT=Hours-40; //Overtime pay is time-and-a-half } - if (dependents >= 3) { + if (Dependents >= 3) { Health=35; } GrossPay = Hours * 16.78 + OT * 16.78 * 1.5; -- cgit v1.2.3