Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void least(double& leastScore, double score[], int& arrayPlace2, double& highScore)
- {
- leastScore = highScore;
- for(int i = 0; i < 47; i++)
- {
- if(score[i] < leastScore)
- {
- leastScore = score[i];
- arrayPlace2 = i;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement