Hello guys ,,, how r u?
Guys i need a quick help with my leap year calculation...
what i did is this :
public static boolean isLeapYear(int year) { if ((year % 4 == 0) && (year % 100 !== 0) && (year % 400 == 0)) { return true; } else if { return false; }
it gives me an error and says:
missing return statement & illegal start of expression
HELP !