Determining leap years requires multiple conditions. A year is a leap year if: It's divisible by AND
Either not divisible by OR divisible by This tests your ability to combine conditions with and/or operators. The rules have exceptions (divisible by ) and exceptions to exceptions (divisible by ). Read the problem statement and think about how to structure your conditions. Which condition should you check first? How do you combine them correctly?