I want to create a method that is meant to protect against entering a wrong value for gender.
The method fineGender below, will return true if the correct gender is entered and false otherwise.
// postcondition: fineGender returns true if argument g equals M, m, F or f
// and returns false otherwise.
public static boolean fineGender(char g)