CJCoding With Joseph

Leap Year Checker (Input)

Read a year from standard input and print whether it is a leap year. A year is a leap year if it is divisible by 4, except that century years must also be divisible by 400. For input 2024 print:

2024 is a leap year

and for input 1900 print:

1900 is not a leap year

Expected Output:

2024 is a leap year
Topics:
User Input
๐Ÿ“ฅ 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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.