Please send questions to
st10@humboldt.edu .
#include <iostream>
#include <cmath>
#include "get_nums.h"
using namespace std;
int main()
{
const int NUM_SCORES = 3;
double scores[NUM_SCORES];
cout << boolalpha;
cout << endl;
cout << "testing get_nums: should see that array "
<< endl
<< " contains the numbers I entered..."
<< endl;
cout << "---------------------------------------" << endl;
get_nums(scores, NUM_SCORES);
cout << "after the call, scores contains: " << endl;
for (int i=0; i<NUM_SCORES; i++)
{
cout << scores[i] << endl;
}
cout << endl;
return EXIT_SUCCESS;
}