dayValidator method

bool dayValidator(
  1. int day
)

Implementation

bool dayValidator(int day) {
  return day >= 1 && day <= 31;
}