Namespaces
Variants

std::chrono::year:: is_leap

From cppreference.net
constexpr bool is_leap ( ) const noexcept ;
(depuis C++20)

Détermine si * this représente une année bissextile dans le calendrier grégorien proleptique .

* this représente une année bissextile si la valeur d'année stockée

  • est divisible par 4 et non divisible par 100 ; ou
  • est divisible par 400.

Valeur de retour

true si * this représente une année bissextile, sinon false .

Exemple

#include <chrono>
#include <iostream>
int main()
{
    using namespace std::chrono_literals;
    for (const std::chrono::year y : {2020y, 2021y, 2000y, 3000y})
    {
        if (const int iy{static_cast<int>(y)}; y.is_leap())
            std::cout << iy << " is a leap year because it is divisible by "
                      << (iy % 400 == 0 ? "400\n" : "4 and not divisible by 100\n");
        else
            std::cout << iy << " is not a leap year\n";
    }
}

Sortie :

2020 is a leap year because it is divisible by 4 and not divisible by 100
2021 is not a leap year
2000 is a leap year because it is divisible by 400
3000 is not a leap year