CJCoding With Joseph

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
๐Ÿ“ฅ Auto-Input:
2024\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.