aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab5/Header1.h
blob: 693d4af16b5a54041afe51804811eb28d9c8b438 (plain) (blame)
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