From 4ad08c7433dc804be5cd4e9a0c388158a9f22dde Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Wed, 20 Feb 2019 13:56:39 +0000 Subject: Some optimizing, some commenting, some raging at 2B (still) --- ee1301/wk2/hw2_directory/strap012_HW2B.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ee1301/wk2/hw2_directory/strap012_HW2B.cpp') diff --git a/ee1301/wk2/hw2_directory/strap012_HW2B.cpp b/ee1301/wk2/hw2_directory/strap012_HW2B.cpp index 158e00e..bd942fb 100644 --- a/ee1301/wk2/hw2_directory/strap012_HW2B.cpp +++ b/ee1301/wk2/hw2_directory/strap012_HW2B.cpp @@ -14,7 +14,7 @@ using namespace std; int main() { - bool change12 = 0, foo = 0, bar = false; //Workaround to prevent unneeded if statements + bool foo = 0, bar = false; //Workaround to prevent unneeded if statements char Time, travel; //"time" is reserved by C++, "Time" is not int hourOG, hourChange, hourNew, intervalChange = 0, timeChange = 0; cout << "Enter current time (A for AM, P for PM): "; @@ -61,13 +61,13 @@ int main() { if (Time == 'A') { - Time += 15; + Time += 15; //15 is the difference in the ASCII table between 'A' and 'P' } else { if (Time == 'P') { - Time -= 15; + Time -= 15; //See line 64 } } } -- cgit v1.2.3