Skip to content

Program to check whether the given number is a Leap Year or not.

Notifications You must be signed in to change notification settings

Pratik180198/Leap-Year

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

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).

About

Program to check whether the given number is a Leap Year or not.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages