monthValidator method

bool monthValidator(
  1. int day
)

Implementation

bool monthValidator(int day) {
  return day >= 1 && day <= 12;
}