Reads the month
| 53 | |
| 54 | // Reads the month |
| 55 | int month() |
| 56 | { |
| 57 | const int low_month {1}; |
| 58 | const int high_month {12}; |
| 59 | return validate_input(low_month, high_month, "a month number"); |
| 60 | } |
| 61 | |
| 62 | // Reads in the date in the given month and year |
| 63 | int date(int month_number, int year) |
no test coverage detected