โ Back to If Statements
Question 67
Leap Year
Leap Year
Read a year (an integer). Print 'Leap year' if it is a leap year, otherwise 'Not a leap year'. A year is a leap year if it is divisible by 4, EXCEPT century years (divisible by 100) which must also be divisible by 400.
Expected Output:
Leap year
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.