Final answer:
The student will create a Python program with a menu that uses IsPrime() and NthPrime() to find the nth prime number, test if a number is prime, or terminate the program, while handling various user inputs and errors.
Step-by-step explanation:
The student is tasked with creating a program in Python that uses the IsPrime() and NthPrime() functions from a previous assignment to implement a menu-driven application. This program provides three options to the user:
- F: Find the nth prime number
- T: Test if a value is prime
- Q: Terminate the program
The program should handle both uppercase and lowercase input letters and prompt for correct input if an incorrect option is chosen. When the 'F' option is selected, the user should input a positive value to find the corresponding prime number. For 'T', the program should accept a non-negative value and confirm if it is prime. An input of 'Q' will exit the program. Error messages should be displayed for invalid inputs and no further action should be taken for that option.