Which of the following was not a leap year?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The all given number is divisible by four, so we should reject one.
Leap year rule 1: if the year is divisible by 4, then it is a leap year.
Leap year rule 2: if the year is divisible by 100, then it is not a leap year.
Leap year rule 3: if the year is divisible by 400, then it is a leap year.
So, leap year : 0 , 4 , 8 , 1 2 , ⋯ , 9 6 , 1 0 0 , 1 0 4 , 1 0 8 , 1 1 2 , 1 1 6 , ⋯ , 3 9 2 , 3 9 6 , 4 0 0 , 4 0 4 , 4 0 8 , 4 1 2 , ⋯ , 1 8 8 8 , 1 8 9 2 , 1 8 9 6 , 1 9 0 4 , 1 9 0 8 , ⋯ , 1 9 9 2 , 1 9 9 6 , 2 0 0 0 , 2 0 0 4 , 2 0 0 8 , 2 0 1 2 , 2 0 1 6 , 2 0 2 0 , 2 0 2 4 , ⋯ .
Problem Loading...
Note Loading...
Set Loading...
if (year is not divisible by 4) then (it is a common year) else if (year is not divisible by 100) then (it is a leap year) else if (year is not divisible by 400) then (it is a common year) else (it is a leap year)
http://en.wikipedia.org/wiki/Leap_year