Using the C++ code we can say that it will be possible to calculate the points as follows:
#include <iostream>
using namespace std;
void getJudgeData(double *);
void calcScore(double[], int);
double findLowest(double[], int);
double findHighest(double[], int);
int main()
{
double scores[5];
int i;
int s=5;
double avgScore;
cout << "\n Enter each Judge's score.\n\n\n";
for(i=0;i<5;i++)
{
cout << "\n Enter Judge #"<< i+1 <<" score: ";
getJudgeData(&scores[i]);
}
See more about C code at brainly.com/question/17544466
#SPJ1