/** * Determine if a year is an Islamic Leap Year * The algorithm: * * Multiply the year by 11, add 14, then divide by 30. * If remainder is less than 11, then it is a leap year * * In particular, years 2, 5, 7, 10, 13, 16, 18, 21, 24, 26, * and 29 of a 30 year cycle are leap years. * * Prompt the user to enter a year. * * Output a message telling whether or not the year is an * Islamic Leap Year * * @author "put your name here" */ public class IslamicLeapYear { public static void main(String[] args { } }