summaryrefslogtreecommitdiffstats
path: root/C++/TakeOrderV2/instructions.txt
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
committermsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
commit9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch)
treeeb1efc1d028b949dd83bb710c68be8eff58f26e7 /C++/TakeOrderV2/instructions.txt
downloadschool-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.gz
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.bz2
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.zip
Inital CommitHEADmaster
Diffstat (limited to 'C++/TakeOrderV2/instructions.txt')
-rw-r--r--C++/TakeOrderV2/instructions.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/C++/TakeOrderV2/instructions.txt b/C++/TakeOrderV2/instructions.txt
new file mode 100644
index 0000000..6fe1592
--- /dev/null
+++ b/C++/TakeOrderV2/instructions.txt
@@ -0,0 +1,7 @@
+The focus of this version/iteration is error checking. All user input should be checked to ensure it is valid input! If they enter an incorrect order, your program should allow them to redo the order. So, TEST, TEST, TEST!!
+When this iteration is graded, here is what I will be looking for:
+
+ That all invalid input is caught, the user is told, and allowed to redo input
+ You have utilized function when needed (at least once)
+ Subtotal, tax, and total are still calculating correctly
+ Anything that stands out to me as inefficient or incorrect