CJCoding With Joseph

Function: Is Leap Year

Write a function isLeap(int y) that returns 1 if year y is a leap year, else 0. A year is a leap year when it is divisible by 4, except centuries, which must be divisible by 400. Read a year from input and print the result. For input 2000 the output is:

1

Print 1 or 0 with %d.

Expected Output:

1
Topics:
Functions/Methods
๐Ÿ“ฅ Auto-Input:
2000
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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.