diff options
| author | BensProgramma <[email protected]> | 2021-11-02 16:02:41 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-02 16:02:41 -0700 |
| commit | 765036c8d2c6acf6c9ce205d7c1bed2a597907a8 (patch) | |
| tree | 9cb81bd5b6694d74f523024e7770de5f3b7aefa2 /CST116F2021-Lab5/Lab5Exercises.h | |
| parent | Add files via upload (diff) | |
| download | cst116-lab5-bensprogramma-765036c8d2c6acf6c9ce205d7c1bed2a597907a8.tar.xz cst116-lab5-bensprogramma-765036c8d2c6acf6c9ce205d7c1bed2a597907a8.zip | |
These are the files to be graded
Diffstat (limited to 'CST116F2021-Lab5/Lab5Exercises.h')
| -rw-r--r-- | CST116F2021-Lab5/Lab5Exercises.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CST116F2021-Lab5/Lab5Exercises.h b/CST116F2021-Lab5/Lab5Exercises.h new file mode 100644 index 0000000..73b2f69 --- /dev/null +++ b/CST116F2021-Lab5/Lab5Exercises.h @@ -0,0 +1,19 @@ +#pragma once
+
+#include <iostream>
+using namespace std;
+
+const int NUM_SCORES = 1;
+const int NUM_STUDENT = 10;
+
+void ReadScores(float[]);
+void LetterG(char[], float[], int[]);
+void average(float[]);
+void displayG(float[], char[], int[]);
+
+void TenSix(); //10.5 & 10.6 combined
+void TenSeven(); //10.7
+void TenEight_Seven(); //10.8_7
+
+
+
|