I wish to create a program that informs the user whether a given date is a holiday or not -
Here is how it should work: The student should be prompted to enter an integer for the month and then prompted to enter an integer for the day. (For example, entering "2" for the month and "14" for the day would represent February 14th.)
The program will tell the student if that date is a vacation day and if so, which one, by printing out a message such as:
February 18 is Presidents' Day. This is a Holiday.
If the day selected is not a holiday, the program should print out a message such as:
February 17 is not a school holiday.
Any idea how I could get this started?