“fórmula de año bisiesto” Código de respuesta

Encuentra el año salto

function leapYear(year)
{
  return ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0);
}
Homely Hoopoe

fórmula de año bisiesto

$day = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
$year = 2021;

if (($year % 4 == 0 && $year % 100 != 0) || ($year % 400 == 0)) {
  $day = [ 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
  echo "This is leap year - get 366 day";
  
} else {
   echo "This is NOT leap year - get ONLY 365 day";
}
Zidane (Vi Ly - VietNam)

Cómo encontrar el año salto

  public static void main(String[] args) {
        int year = 2005;

        if ((year % 400 == 0) || ((year % 4 == 0) && (year % 100 != 0))){
            System.out.println(year+" leap year");
        }else {
            System.out.println(year+" not a leap year");
        }
    }
Chathumal Sangeeth

Respuestas similares a “fórmula de año bisiesto”

Preguntas similares a “fórmula de año bisiesto”

Más respuestas relacionadas con “fórmula de año bisiesto” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código