I am following \"The Art and Science of Java\" book and it shows how to calculate a leap year. The book uses ACM Java Task Force\'s library.
Here is the code the boo
You can ask the GregorianCalendar class for this:
boolean isLeapyear = new GregorianCalendar().isLeapYear(year);