Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
languagenone
function bool = isLeapYear(year)
bool = (year > 0 && mod(year, 4) == 0 &&  (~mod(year, 100) == 0 || mod(year, 400) == 0));
end

Da blir den oppdaterte daysInMonth-funksjonen slik:

...