A century year adds an interesting twist to the leap year calculation. Century years are those ending with two zeros, such as 1800, 1900, 2000, etc. These years require additional checking because:
- Even if a century year is divisible by 4, it must also be divisible by 400 to be a leap year.
For instance, 2000 is a leap year because it fulfills the condition, being divisible by both 4 and 400. Conversely, 1900 is not a leap year as it fails the 400 divisibility test, despite being divisible by 4.
To determine if a year is a century year, simply check whether it ends in two zeros. This condition ensures a fine-tuned approach to leap year calculation, avoiding incorrect assumptions about the leap status of century years.