Enter score from judge #1: -1
Score must be between 0 and 10. Please re-enter: 5
Press any key to continue
For some reason it will not loop, I most likely don't have my loop set up right.
Enter score from judge #1: -1
Score must be between 0 and 10. Please re-enter: 11
Score must be between 0 and 10. Please re-enter: 8.23
Enter score from judge #2: 9.51
Enter score from judge #3: -8
Score must be between 0 and 10. Please re-enter: 8.67
Enter score from judge #4: 5.39
Enter score from judge #5: 9.75
This is what I want to happen. Again any help would be nice, and Thank You for your time.
Here you're telling it to "return" to the main function with the value of judge. Only return AFTER you've collected all of the scores. And if you need to collect six different scores then you'll need some container to put them in (an array, vector, etc.)
Hope this helps.