yo! nid help on this..
i'm still a newbie in this kind of business..
i want to see how you make a code out of this and compare it to my own..
or i can send you a copy of my code and correct it for my benefit XD..
just reply to this post with your e.mail!
thanks!
C/C++..... nid help! XD
here's the prob anyways....
Write a program that reads 7 scores as input and outputs the average. The program uses an array of floats. Note that you need to determine the highest and the lowest score and exclude them in the computation, assume that there are no judges giving the same score.
list of scores that the judges give:
9.20
9.00
8.75
9.40
9.50
8.90
9.60
/* you can use functions on this */
/* the output would similarly look like this */
Enter the 7 scores: 9.20 9.00 8.75 9.40 9.50 8.90 9.60
Highest score: 9.60
Lowest score: 8.75
Average score: 9.20