Calendar
DaysInYear
compute the number of days in a given year
Calling Sequence
Parameters
Description
Examples
Compatibility
DaysInYear( year )
year
-
integer; the year whose length in days is to be computed
The DaysInYear( year ) command computes the number of days in the year year. The number of days is either 365 for an ordinary year or 366 in a leap year. There is also an exception for the year 1582, the year of calendar reform, which is missing 10 days.
Leap years prior to 1582 occur every four years. After 1582, the modern leap year rules are used.
Leap years prior to the year 5 were observed inconsistently, and may be historically incorrect.
with⁡Calendar:
DaysInYear⁡2000
366
DaysInYear⁡1100
DaysInYear⁡2100
365
DaysInYear⁡2001
DaysInYear⁡1900
DaysInYear⁡1995
DaysInYear⁡1582
355
DaysInYear⁡0
DaysInYear⁡4
The Calendar[DaysInYear] command was introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
See Also
Calendar[DaysInMonth]
Download Help Document