“Schaltjahr Algorithmus” Code-Antworten

Schaltjahr Algorithmus

def isLeapYear (year):
    if ((year % 4 == 0) and (year % 100 != 0)) or (year % 400 == 0):
		true
    else:
    	false
Marton

Schaltjahr Algorithmus

if year % 4 == 0:
  if year % 100 == 0:
    if year % 400 == 0:
      print("leap year")
    else:
      print("not a leap year")
  else:
    print("leap year")
else:
  print("not a leap year")
Cautious Capuchin

Sprungjahrsprogramm

#include <stdio.h>

int main() {
   int year;
   year = 2016;

   if (((year % 4 == 0) && (year % 100!= 0)) || (year%400 == 0))
      printf("%d is a leap year", year);
   else
      printf("%d is not a leap year", year);

   return 0;
}
Amused Ant

Ähnliche Antworten wie “Schaltjahr Algorithmus”

Fragen ähnlich wie “Schaltjahr Algorithmus”

Weitere verwandte Antworten zu “Schaltjahr Algorithmus” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen