diff options
| author | LTB-Pravda <[email protected]> | 2021-11-02 20:57:36 -0700 |
|---|---|---|
| committer | LTB-Pravda <[email protected]> | 2021-11-02 20:57:36 -0700 |
| commit | c447882d5081491ae123da25c71049d31af8f8fb (patch) | |
| tree | aa34cf7e9a50e1b24fff0f31e73ac65e9c8698b0 /CST116F2021-Lab5/CST116-lab5.h | |
| parent | Add online IDE url (diff) | |
| download | cst116-lab5-ltb-pravda-master.tar.xz cst116-lab5-ltb-pravda-master.zip | |
Diffstat (limited to 'CST116F2021-Lab5/CST116-lab5.h')
| -rw-r--r-- | CST116F2021-Lab5/CST116-lab5.h | 35 |
1 files changed, 35 insertions, 0 deletions
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 <iostream> +#include <cstring> +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 |