using namespace std;
const int SIZE = 5;
void displayScores(float testScores[], int SIZE);
int main()
{
float testScores[SIZE] = {92.5, 88., 72.5, 99.0,87.0};
displayScores(testScores, SIZE);
}
void displayScores(float testScores[], int SIZE)
{
cout << "Here are the test scores: " << endl;
for (int i = 0; i < SIZE; i++)
{
cout << testScores[i] << endl;
}
}