Created
January 22, 2024 03:49
-
-
Save frantizek/8aeb4a8ada0068a420122b8d7f127358 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* LeapExample | |
* | |
* A leap year (in the Gregorian calendar) occurs: | |
* In every year that is evenly divisible by 4. | |
* Unless the year is evenly divisible by 100, in which case it's only a leap year if the year is also evenly divisible by 400. | |
* Some examples: | |
* 1997 was not a leap year as it's not divisible by 4. | |
* 1900 was not a leap year as it's not divisible by 400. | |
* 2000 was a leap year! | |
*/ | |
class Leap { | |
boolean isLeapYear(int year) { | |
if(year % 4 == 0){ | |
if (year % 100 == 0){ | |
if(year % 400 == 0){ | |
return true; | |
} | |
else{ | |
return false; | |
} | |
} | |
return true; | |
} | |
else { | |
return false; | |
} | |
} | |
} | |
public class LeapExample { | |
public static void main(String args[]){ | |
Leap leap = new Leap(); | |
System.out.println(leap.isLeapYear(2024)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment