โ Back to Methods
Question 372
Is Leap Year Method
Is Leap Year Method
Write the static methodIsLeapYearso it returnstruewhen 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 aMainmethod. ForIsLeapYear(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.