Hint 2: Quiz with arrays: Repeating wrong answers
- Create a boolean array (the size of the number of questions) and initialize all to false.
- When a question is answered correctly, set that element in the boolean array to true.
- To find a question that has not been answered correctly:
- generate a random integer in the range of questions
- while that question has been answered correctly
- generate another random integer in the same range
- return the random number that allowed the loop to exit
This topic: CenterForComputing
> WebHome >
Syllabi >
SyllabiFall2024 >
CSC121SylF2024 >
CSC121F2024Lab10 > CSC121F2024Lab10Hint2
Topic revision: r1 - 2024-06-14 - CathyBareiss