CJCoding With Joseph

Check Leap Year

Write a function bool isLeapYear(int year) that returns true if year is a leap year. A year is a leap year when it is divisible by 4, except that years divisible by 100 are not leap years unless they are also divisible by 400. Read one integer year from standard input, then print true or false using boolalpha.

For input 2000 the output is:

true

Expected Output:

true
Topics:
Functions
๐Ÿ“ฅ Auto-Input:
2000\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.