CJCoding With Joseph

Is Leap Year Method

Write a method isLeapYear(int year) that returns true for 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 input 2000 the output is:

true

Expected Output:

true
Topics:
Methods
๐Ÿ“ฅ Auto-Input:
2000
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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.