“Schaltjahrsformel” Code-Antworten

Schaltjahr finden

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

Schaltjahrsformel

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

So finden Sie Schaltjahr

  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

Ähnliche Antworten wie “Schaltjahrsformel”

Fragen ähnlich wie “Schaltjahrsformel”

Weitere verwandte Antworten zu “Schaltjahrsformel” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen