โ Back to Functions
Question 406
Check Leap Year
Check Leap Year
Write a functionbool isLeapYear(int year)that returnstrueifyearis 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 printtrueorfalseusingboolalpha. For input2000the output is: true
Expected Output:
true
Topics:
Functions
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.