Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 518 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 518 Bytes

Leap-Year

Program to check whether the given number is a Leap Year or not. How to determine whether a year is a leap year To determine whether a year is a leap year, follow these steps:

If the year is evenly divisible by 4, go to step 2. Otherwise, go to step 5.

If the year is evenly divisible by 100, go to step 3. Otherwise, go to step 4.

If the year is evenly divisible by 400, go to step 4. Otherwise, go to step 5.

The year is a leap year (it has 366 days).

The year is not a leap year (it has 365 days).