C++:Problem15

int findLowest ();
//purpose: to find the minimum value.
//preconditon: none
//postcondtion: to return the minimum.

float calcAverage (int m);
//purpose: to calculate the average the numbers.
//preconditon: none
//postcondtion: return the average.

//intializing an Array
int scores[10];


int main()
{
int minimum;

getValues();
minimum = findLowest();
cout<
//decmial format
cout.setf(ios::fixed);
cout.setf(ios::showpoint);
cout.precision(2);

cout<< "The average of your highest nine scores is "
< return 0;
}

void getValues()
{

//for-loop to get the scores of the ten exams
for(int test= 0; test<10;test++)
{
if((scores[test]>= 0) && (scores[test]<=100))
cout<< "Enter your score on test #"<< test+1<< " ";
cin>> scores[test];
}
}