fork download
  1. # Decisión
  2. # Determina si un año es bisiesto
  3.  
  4. n = float(input("Dame el año: "))
  5.  
  6. if ((n % 4 == 0 and n % 100 != 0)
  7. or (n % 100 == 0 and n % 400 == 0)):
  8. print("Es bisiesto.")
  9. else:
  10. print("No es bisiesto.")
  11.  
Success #stdin #stdout 0.02s 28384KB
stdin
2004
stdout
Dame el año: Es bisiesto.