CJCoding With Joseph

Is Leap Year Method

Write the static method IsLeapYear so it returns true when the given year is a leap year. A year is a leap year if it is divisible by 4, except years divisible by 100 are NOT leap years unless they are also divisible by 400. The tester calls it and prints the result. Do NOT write a Main method.

For IsLeapYear(2000) the program prints exactly:
True

Expected Output:

True
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.