aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2/hw2_directory/strap012_HW2B.cpp
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2019-02-20 13:56:39 +0000
committerRossTheRoss <msattr@gmail.com>2019-02-20 13:56:39 +0000
commit4ad08c7433dc804be5cd4e9a0c388158a9f22dde (patch)
treed9024e7eeefedb9709197e2d8a6a826cbfdca966 /ee1301/wk2/hw2_directory/strap012_HW2B.cpp
parentFinish C (diff)
downloadhomework-4ad08c7433dc804be5cd4e9a0c388158a9f22dde.tar
homework-4ad08c7433dc804be5cd4e9a0c388158a9f22dde.tar.gz
homework-4ad08c7433dc804be5cd4e9a0c388158a9f22dde.tar.bz2
homework-4ad08c7433dc804be5cd4e9a0c388158a9f22dde.tar.lz
homework-4ad08c7433dc804be5cd4e9a0c388158a9f22dde.tar.xz
homework-4ad08c7433dc804be5cd4e9a0c388158a9f22dde.tar.zst
homework-4ad08c7433dc804be5cd4e9a0c388158a9f22dde.zip
Some optimizing, some commenting, some raging at 2B (still)
Diffstat (limited to 'ee1301/wk2/hw2_directory/strap012_HW2B.cpp')
-rw-r--r--ee1301/wk2/hw2_directory/strap012_HW2B.cpp6
1 files changed, 3 insertions, 3 deletions
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
}
}
}