// // Created by Till on 27-Oct-21. // #include using namespace std; const int NUM_STUDENTS = 10; void ReadScores(float[]); //input scores from keyboard void LetterGrade(char[], float[]); //change score to letter grade and store in alt list float calcAverage(float[]); //calculate average score for students void printInfo(float[], char[], float avg); //display all info