1 2 3 4 5 6 7 8 9 10 11 12 13
#include <iostream> 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; #pragma once