Answer: You would want to test from values [-1:101] inclusive and non numeric characters.
Step-by-step explanation:
You want to test the expected input of [0:100] to ensure that you have the expect results of a letter A through F.
You will also want to test outside of that numeric range (i.e., -1 and 101) to see the behavior of your method and insure proper error handling.
Additionally, you will want to test non numeric characters to ensure that the input is not accepted and proper error handling occurs.
If these test cases are passed and the errors handled as expected, your method can be considered viable.
Cheers.