From c447882d5081491ae123da25c71049d31af8f8fb Mon Sep 17 00:00:00 2001 From: LTB-Pravda <91996618+LTB-Pravda@users.noreply.github.com> Date: Tue, 2 Nov 2021 20:57:36 -0700 Subject: Updating Lab 5 with final work --- CST116F2021-Lab5/CST116-lab5.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 CST116F2021-Lab5/CST116-lab5.h (limited to 'CST116F2021-Lab5/CST116-lab5.h') diff --git a/CST116F2021-Lab5/CST116-lab5.h b/CST116F2021-Lab5/CST116-lab5.h new file mode 100644 index 0000000..d3e82e7 --- /dev/null +++ b/CST116F2021-Lab5/CST116-lab5.h @@ -0,0 +1,35 @@ +// File: CST116-Lab_5.h +// Summary: A compilation of header files for Lab 5 +// Author: Logan Billingsley +// Date: 11/2/2021 + +#include +#include +using namespace std; + + // 9b -- 10.6 Learn by Doing Exercises +/* +const int SIZE = 10; + +void GetScores(float[]); +void DisplayScores(float scores[], int&, int&, int&, int&, int&); +void DisplayTotals(int, int, int, int, int); +*/ + + // 10a -- 10.7 Learn by Doing Exercies 2 +/* +const int SIZE = 20 + 1; + +void GetNames(char[], char[]); +void FullName(char[], char[], char[]); +void PrintName(char[]); +*/ + + // 10b -- 10.8 Exercies 7 +/* +const int SIZE = 20 + 1; + +void GetString1(char[]); +void GetString2(char[]); +void CompareStrings(char[], char[]); +*/ \ No newline at end of file -- cgit v1.2.3