//Runs the specified course
void runCourse(int test) {
readyStart();
switch (test) {
case 0: //MAIN TEST
//see this on this website by clicking the following links (in green):
Individual Competition</a><a href="https://u.osu.edu/feh18d8/code/competitions/individual-competition/">
Final Competition</a><a href="https://u.osu.edu/feh18d8/code/competitions/final-competition/">
break;
case 1: //POSITION BACKWARDS - CHECK 1
//see this on this website by clicking the following link (in green):
<a href="https://u.osu.edu/feh18d8/code/performance-tests/346-2/"></a>
break;
case 2: // CHECK 2
//see this on this website by clicking the following link (in green):
<a href="https://u.osu.edu/feh18d8/code/performance-tests/performance-test-2/"></a>
break;
case 3: // CHECK 3
//see this on this website by clicking the following link (in green):
<a href="https://u.osu.edu/feh18d8/code/performance-tests/performance-test-3/"></a>
break;
case 4: // CHECK 4
//see this on this website by clicking the following link (in green):
<a href="https://u.osu.edu/feh18d8/code/performance-tests/performance-test-4/"></a>
}
LCD.Clear( FEHLCD::Black );
}
Algorithm for runCourse:
- If value is 0, run the main course.
- If value is 1, run the first performance test.
- If value is 2, run performance test 2.
- If value is 3, run third performance test.
- If value is 4, run performance test 4.