aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2/lab2
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk2/lab2')
-rw-r--r--ee1301/wk2/lab2/calc.cpp10
-rw-r--r--ee1301/wk2/lab2/strap012_lab2_pay_stub.cpp6
2 files changed, 8 insertions, 8 deletions
diff --git a/ee1301/wk2/lab2/calc.cpp b/ee1301/wk2/lab2/calc.cpp
index f2e0e87..f9925b0 100644
--- a/ee1301/wk2/lab2/calc.cpp
+++ b/ee1301/wk2/lab2/calc.cpp
@@ -7,20 +7,20 @@ int main () {
cout << "Enter an equation: ";
cin >> a >> op >> b;
cout << a << op << b << " = ";
-
- if (op=='+'){
+
+ if (op=='+'){ //Addition
cout << a + b;
}
- if (op=='-'){
+ if (op=='-'){ //Subtraction
cout << a - b;
}
- if (op=='*'){
+ if (op=='*'){ //Multiplication
cout << a * b;
}
- if (op=='/'){
+ if (op=='/'){ //Division
cout << a / b;
}
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;