aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab5/Header1.h
diff options
context:
space:
mode:
Diffstat (limited to 'CST116F2021-Lab5/Header1.h')
-rw-r--r--CST116F2021-Lab5/Header1.h26
1 files changed, 18 insertions, 8 deletions
diff --git a/CST116F2021-Lab5/Header1.h b/CST116F2021-Lab5/Header1.h
index 693d4af..403d914 100644
--- a/CST116F2021-Lab5/Header1.h
+++ b/CST116F2021-Lab5/Header1.h
@@ -2,12 +2,22 @@
using namespace std;
-void GetScores(float[]);
-void CheckGrade(float[], char[]);
-float calcAvg(float[], float avg);
-void CountScores(char[], int[]);
-
-const int NUM_SCORES = 10;
-const int NUM_STUD = 5;
-const int NUM_GRADE = 5;
+void GetFirst(char[]);
+void GetLast(char[]);
+void DispName(char[], char[], char[]);
+
+const int FIRST_NAME = 15;
+const int LAST_NAME = 15;
+const int FULL_NAME = 2+FIRST_NAME + LAST_NAME;
+
+
+//p.253
+//void GetScores(float[]);
+//void CheckGrade(float[], char[]);
+//float calcAvg(float[], float avg);
+//void CountScores(char[], int[]);
+//
+//const int NUM_SCORES = 10;
+//const int NUM_STUD = 5;
+//const int NUM_GRADE = 5;
#pragma once