leap year

I'll simplfy this. Humans cut every year 6 hours short (1/4 of a day[it is
actually less than 1/4 but see below for the rest]).
This means that every 4 years, 24 hours have been lost and to make up for
that, we just add the 24 hours to a much shorter month (like february - 28d)
giving us the 'leap year' and making the year 1 day longer.


This is to keep up with the astronomical years which the western calender
is based off of, in which the terrarial 'lap' of the sun is the equivilant
of 265.24 full rotations of the earth (day/night cycles). The reason we don't
measure individual years in 365.24 earth rotations is because we would end up
having a super long day at the end of the year and then days would end up
being dark or light depending on the year and it would all get in a 
big muddle. Instead, we keep the calendar normal and just remove the .24 of 
a day off every 3 years, only to add all the lost time together and make
another day every four years (or every leap year). You may have noticed
that 4x0.24 is actually not 100 but 0.96, so surely after 100 years,
we would miss a day? Well actually, in the year 2000, we did still have a leap
year because it is a multiple of 400(a leap century if you will),
but every other 100 years, we do not have an extra day because of that 0.24.

4
4

                                    import calendar

def is_leap(year):
    return calendar.isleap(year)

4 (4 Votes)
0
3
1

                                    #include <iostream>
using namespace std;

int main() {
    int year;
    cout << "Enter a year: ";
    cin >> year;
    if (year % 4 == 0) {
        if (year % 100 == 0) {
            (year % 400 == 0) ?
            cout << year << " is a leap year." :
            cout << year << " is not a leap year.";
        }
        else
            cout << year << " is a leap year.";
    }
    else
        cout << year << " is not a leap year.";
    return 0;
}

3 (1 Votes)
0
Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source