1. Create a Java class called ItWasAGoodYear
2. Create a constant called THISYEAR and set it equal to the current year
3. In your main method:
1. Prompt the user for a year
1. Print the year the user selected and ask them if it is correct.
2. If they say no, prompt for another year (you only have to compare their response to the string "no" - anything else you can assume is a yes)
2. Check how far in the past or future the year is
1. If the year is in the past (before this year), print how many years ago it was
2. If the year is in the future (after this year), print how many years from now it is
3. If the year is the current year, do not print anything
3. Check if the year is a leap year and print a message if it is. The criteria for leap year is as follows:
1. If the year is divisible by 4, but not by 100 then it is a leap year
2. If a year is divisible by 400 it is a leap year