I\'m working on a Java assignment and it involves printing a calendar after the user specifies a month and a year. I cannot use the Calendar or GregorianCalendar classes. My pro
This will fix the leap year issue
if ((((i + h) % 7 == 0) || (i == numDays) && leap(year)))