Write a program to make the day of the week program work when the year is 2000 or 1999. You have the program that works for 1999, now it must work with either. There are a couple of approaches you can consider:
Clearly the second choice is a temporary fix because it is only dealing with dates for a one hundred year range and sooner or later you will need to fix. There are modifications to this that can make it a little more flexible, but you have the 100 year limit so it would not be appropriate when dealing with year of birth etc.
In solving this problem, you need to consider things like 2000 is a leap year and the rules about leap years and centuries.

Extra credit if you solve the problem without the 100 year limit.