โ Back to Methods
Question 369
Is Leap Year Method
Is Leap Year Method
Write a methodisLeapYear(int year)that returnstruefor leap years. A year is a leap year when it is divisible by 4 and not by 100, or when it is divisible by 400. Read one integer from input and print the result. For input2000the output is: true
Expected Output:
true
Topics:
Methods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.