Find the last Sunday of each month: Difference between revisions

Add Easylang
(Fixed order (Free Pascal, FreeBASIC))
(Add Easylang)
 
(16 intermediate revisions by 8 users not shown)
Line 26:
=={{header|11l}}==
 
<langsyntaxhighlight lang="11l">F last_sundays(year)
[String] sundays
L(month) 1..12
Line 37:
R sundays
 
print(last_sundays(2013).join("\n"))</langsyntaxhighlight>
 
{{out}}
Line 57:
=={{header|360 Assembly}}==
The program uses one ASSIST macro (XPRNT) to keep the code as short as possible.
<langsyntaxhighlight lang="360asm">* Last Sunday of each month 31/01/2017
LASTSUND CSECT
USING LASTSUND,R13 base register
Line 135:
DW DS D packed (PL8) 15num
YREGS
END LASTSUND</langsyntaxhighlight>
{{out}}
<pre>
Line 154:
=={{header|Action!}}==
Day of the week is determined using [https://en.wikipedia.org/wiki/Determination_of_the_day_of_the_week#Sakamoto.27s_methods Sakamoto method].
<langsyntaxhighlight Actionlang="action!">;https://en.wikipedia.org/wiki/Determination_of_the_day_of_the_week#Sakamoto.27s_methods
BYTE FUNC DayOfWeek(INT y BYTE m,d) ;1<=m<=12, y>1752
BYTE ARRAY t=[0 3 2 5 0 3 5 1 4 6 2 4]
Line 218:
PrintB2(last) PutE()
OD
RETURN</langsyntaxhighlight>
{{out}}
[https://gitlab.com/amarok8bit/action-rosetta-code/-/raw/master/images/Find_the_last_Sunday_of_each_month.png Screenshot from Atari 8-bit computer]
Line 258:
=={{header|ALGOL 68}}==
{{Trans|ALGOL W}}
<langsyntaxhighlight lang="algol68">BEGIN # find the last Sunday in each month of a year #
# returns true if year is a leap year, false otherwise #
# assumes year is in the Gregorian Calendar #
Line 306:
)
OD
END</langsyntaxhighlight>
{{out}}
<pre>
Line 324:
 
=={{header|ALGOL-M}}==
<syntaxhighlight lang="algol">
<lang ALGOL>
BEGIN
 
Line 432:
 
END
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 453:
=={{header|ALGOL W}}==
Uses the Day_of_week and isLeapYear procedures from the day-of-the-week and leap-year tasks - included here for convenience.
<langsyntaxhighlight lang="algolw">begin % find the last Sunday in each month of a year %
% returns true if year is a leap year, false otherwise %
% assumes year is in the Gregorian Calendar %
Line 508:
for mPos := 1 until 12 do write( year, if mPos < 10 then "-0" else "-1", mPos rem 10, "-", last( mPos ) )
end
end.</langsyntaxhighlight>
{{out}}
<pre>
Line 529:
{{Trans|JavaScript}}
 
<langsyntaxhighlight AppleScriptlang="applescript">-- LAST SUNDAYS OF YEAR ------------------------------------------------------
 
-- lastSundaysOfYear :: Int -> [Date]
Line 714:
map(column, item 1 of xss)
end transpose</langsyntaxhighlight>
{{Out}}
<pre>2015-01-25 2016-01-31 2017-01-29 2018-01-28 2019-01-27
Line 735:
AppleScript's weekday constants can be coerced either to English text or to the integers 1 (for Sunday) to 7 (Saturday).
 
<langsyntaxhighlight AppleScriptlang="applescript">on lastSundayOfEachMonthInYear(y)
-- Initialise an AppleScript date to the first day of some month in the specified year.
tell (current date) to set {firstDayOfNextMonth, its day, its year} to {it, 1, y}
Line 757:
end lastSundayOfEachMonthInYear
 
lastSundayOfEachMonthInYear(2020)</langsyntaxhighlight>
 
{{Out}}
Line 776:
The above is hard-coded for Sundays. As with the "Last Friday of each month" task [[https://www.rosettacode.org/wiki/Last_Friday_of_each_month#AppleScript Last Friday of each month]], the handler can be made more flexible with a weekday constant parameter, so that it can be used for any last weekday of the months:
 
<langsyntaxhighlight AppleScriptlang="applescript">on lastWeekdayWOfEachMonthInYear(w, y) -- Parameters: (AppleScript weekday constant, AD year number)
-- Initialise an AppleScript date to the first day of some month in the specified year.
tell (current date) to set {firstDayOfNextMonth, its day, its year} to {it, 1, y}
Line 800:
end lastWeekdayWOfEachMonthInYear
 
lastWeekdayWOfEachMonthInYear(Sunday, 2020)</langsyntaxhighlight>
{{Out}}
<pre>"./last_Sundays 2020
Line 818:
=={{header|Arturo}}==
 
<langsyntaxhighlight lang="rebol">lastSundayForMonth: function [m,y][
ensure -> in? m 1..12
 
Line 834:
]
 
getLastSundays 2013</langsyntaxhighlight>
 
{{out}}
Line 852:
 
=={{header|AutoHotkey}}==
<langsyntaxhighlight AutoHotkeylang="autohotkey">InputBox, Year, , Enter a year., , 300, 135
Date := Year . "0101"
 
Line 871:
 
Gui, Show
return</langsyntaxhighlight>
{{out}}
<pre>Last Sundays of 2013:
Line 889:
 
=={{header|AWK}}==
<syntaxhighlight lang="awk">
<lang AWK>
# syntax: GAWK -f FIND_THE_LAST_SUNDAY_OF_EACH_MONTH.AWK [year]
BEGIN {
Line 907:
exit(0)
}
</syntaxhighlight>
</lang>
<p>Output:</p>
<pre>
Line 926:
=={{header|Batch File}}==
Uses day of week, last day of month and leapyear routines
<syntaxhighlight lang="batch file">
<lang Batch File>
@echo off
setlocal enabledelayedexpansion
Line 962:
set /a "%2=^!(%1%%4)+(^!^!(%1%%100)-^!^!(%1%%400))"
exit /b
</syntaxhighlight>
</lang>
{{out}}
Line 983:
 
=={{header|BBC BASIC}}==
<langsyntaxhighlight lang="bbcbasic">
INSTALL @lib$+"DATELIB"
 
Line 993:
NEXT
END
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,015:
=={{header|Befunge}}==
This is essentially identical to [[Last_Friday_of_each_month#Befunge|Last Friday of each month]] except for the initial day offset.
<langsyntaxhighlight lang="befunge">":raeY",,,,,&>55+,:::45*:*%\"d"%!*\4%+!3v
v2++6**"I"5\+/*:*54\-/"d"\/4::-1::p53+g5<
>:00p5g4-+7%\:0\v>,"-",5g+:55+/68*+,55+%v
^<<_$$vv*86%+55:<^+*86%+55,+*86/+55:-1:<6
>$$^@$<>+\55+/:#^_$>:#,_$"-",\:04-\-00g^8
^<# #"#"##"#"##!` +76:+1g00,+55,+*<</langsyntaxhighlight>
 
{{out}}
Line 1,041:
Identical to [[Last_Friday_of_each_month#C|Last Friday of each month]] except for removal of the offset day in the output.
 
<syntaxhighlight lang="c">
<lang C>
#include <stdio.h>
#include <stdlib.h>
Line 1,061:
return 0;
}
</syntaxhighlight>
</lang>
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="csharp">using System;
 
namespace LastSundayOfEachMonth
Line 1,097:
}
}
</syntaxhighlight>
</lang>
{{out}}
<pre>Year to calculate: 2013
Line 1,115:
 
=={{header|C++}}==
<langsyntaxhighlight lang="cpp">
#include <windows.h>
#include <iostream>
Line 1,215:
}
//--------------------------------------------------------------------------------------------------
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,234:
</pre>
Other solution, based on the Boost DateTime library:
<langsyntaxhighlight Clang="c++">#include <iostream>
#include <boost/date_time/gregorian/gregorian.hpp>
#include <cstdlib>
Line 1,256:
}
return 0 ;
}</langsyntaxhighlight>
{{out}}
<pre>2013-Jan-27
Line 1,270:
2013-Nov-24
2013-Dec-29
</pre>
===Using C++20===
Using C++20 this task can be completed without external libraries.
<syntaxhighlight lang="c++">
 
#include <chrono>
#include <iostream>
 
int main() {
std::cout << "The dates of the last Sunday in each month of 2023:" << std::endl;
 
for ( unsigned int m = 1; m <= 12; ++m ) {
std::chrono::days days_in_month = std::chrono::sys_days{std::chrono::year{2023}/m/std::chrono::last}
- std::chrono::sys_days{std::chrono::year{2023}/m/1} + std::chrono::days{1};
 
const unsigned int last_day = days_in_month / std::chrono::days{1};
std::chrono::year_month_day ymd{std::chrono::year{2023}, std::chrono::month{m}, std::chrono::day{last_day}};
 
while ( std::chrono::weekday{ymd} != std::chrono::Sunday ) {
ymd = std::chrono::sys_days{ymd} - std::chrono::days{1};
}
 
std::cout << ymd << std::endl;
}
}
</syntaxhighlight>
{{ out }}
<pre>
The dates of the last Sunday in each month of 2023:
2023-01-29
2023-02-26
2023-03-26
2023-04-30
2023-05-28
2023-06-25
2023-07-30
2023-08-27
2023-09-24
2023-10-29
2023-11-26
2023-12-31
</pre>
 
=={{header|Clojure}}==
 
<langsyntaxhighlight lang="clojure">(ns last-sundays.core
(:require [clj-time.core :as time]
[clj-time.periodic :refer [periodic-seq]]
Line 1,299 ⟶ 1,340:
(defn -main [& args]
(println (last-sundays-of-months (Integer. (first args)))))
</syntaxhighlight>
</lang>
{{out}}
<pre>2013-01-27
Line 1,316 ⟶ 1,357:
 
=={{header|COBOL}}==
<syntaxhighlight lang="cobol">
<lang COBOL>
program-id. last-sun.
data division.
Line 1,365 ⟶ 1,406:
.
end program last-sun.
</syntaxhighlight>
</lang>
 
{{out}}
Line 1,386 ⟶ 1,427:
First, calculate the day of week of the 1st day of next month. Then figure out how many days you have to go back until the last Sunday of the month.
 
<langsyntaxhighlight lang="lisp">(defun last-sundays (year)
(loop for month from 1 to 12
for last-month-p = (= month 12)
Line 1,401 ⟶ 1,442:
(format t "~D-~2,'0D-~2,'0D~%" year month date))))
 
(last-sundays 2013)</langsyntaxhighlight>
{{out}}
<pre>2013-01-27
Line 1,417 ⟶ 1,458:
 
=={{header|D}}==
<langsyntaxhighlight lang="d">void lastSundays(in uint year) {
import std.stdio, std.datetime;
 
Line 1,430 ⟶ 1,471:
void main() {
lastSundays(2013);
}</langsyntaxhighlight>
{{out}}
<pre>2013-Jan-27
Line 1,448 ⟶ 1,489:
{{libheader| System.DateUtils}}
{{Trans|C#}}
<syntaxhighlight lang="delphi">
<lang Delphi>
program Find_the_last_Sunday_of_each_month;
 
Line 1,497 ⟶ 1,538:
 
readln;
end.</langsyntaxhighlight>
 
=={{header|EasyLang}}==
<syntaxhighlight>
func leap year .
return if year mod 4 = 0 and (year mod 100 <> 0 or year mod 400 = 0)
.
func weekday year month day .
normdoom[] = [ 3 7 7 4 2 6 4 1 5 3 7 5 ]
c = year div 100
r = year mod 100
s = r div 12
t = r mod 12
c_anchor = (5 * (c mod 4) + 2) mod 7
doom = (s + t + (t div 4) + c_anchor) mod 7
anchor = normdoom[month]
if leap year = 1 and month <= 2
anchor = (anchor + 1) mod1 7
.
return (doom + day - anchor + 7) mod 7 + 1
.
mdays[] = [ 31 28 31 30 31 30 31 31 30 31 30 31 ]
proc last_sundays year . .
for m to 12
d = mdays[m]
if m = 2 and leap year = 1
d = 29
.
d -= weekday year m d - 1
m$ = m
if m < 10
m$ = "0" & m
.
print year & "-" & m$ & "-" & d
.
.
last_sundays 2023
</syntaxhighlight>
 
=={{header|Elixir}}==
<langsyntaxhighlight lang="elixir">defmodule RC do
def lastSunday(year) do
Enum.map(1..12, fn month ->
Line 1,514 ⟶ 1,592:
Enum.each(RC.lastSunday(y), fn {year, month, day} ->
:io.format "~4b-~2..0w-~2..0w~n", [year, month, day]
end)</langsyntaxhighlight>
 
{{out}}
Line 1,532 ⟶ 1,610:
2013-12-29
</pre>
 
=={{header|Emacs Lisp}}==
<syntaxhighlight lang="lisp">(require 'calendar)
 
(defun last-sunday (year)
"Print the last Sunday in each month of year"
(mapcar (lambda (month)
(let*
((days (number-sequence 1 (calendar-last-day-of-month month year)))
(mdy (mapcar (lambda (x) (list month x year)) days))
(weekdays (mapcar #'calendar-day-of-week mdy))
(lastsunday (1+ (cl-position 0 weekdays :from-end t))))
(insert (format "%i-%02i-%02i \n" year month lastsunday))))
(number-sequence 1 12)))
 
(last-sunday 2013)</syntaxhighlight>
{{output}}
<pre>2013-01-27
2013-02-24
2013-03-31
2013-04-28
2013-05-26
2013-06-30
2013-07-28
2013-08-25
2013-09-29
2013-10-27
2013-11-24
2013-12-29 </pre>
 
=={{header|Erlang}}==
<syntaxhighlight lang="erlang">
<lang Erlang>
-module(last_sundays).
 
Line 1,549 ⟶ 1,656:
{Year, Month, Ldm - Diff}.
 
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,575 ⟶ 1,682:
 
{{Works with|Office 365 betas 2021}}
<langsyntaxhighlight lang="lisp">lastSundayOfEachMonth
=LAMBDA(y,
LAMBDA(monthEnd,
Line 1,585 ⟶ 1,692:
)
)
)</langsyntaxhighlight>
{{Out}}
The formula in cell B2 defines an array which populates the range '''B2:B13'''.
Line 1,655 ⟶ 1,762:
<p>We use a transformation from and to the Julian Day Number, see also PARI/GP or Fortran.</p>
<p>The formulars used here come from [http://calendars.wikia.com/wiki/Julian_day_number] (section "Calculation").</p>
<langsyntaxhighlight lang="fsharp">let jdn (year, month, day) =
let a = (14 - month) / 12
let y = year + 4800 - a
Line 1,682 ⟶ 1,789:
|> List.map (fun x -> date_from_jdn (x - (x+1)%7))
|> List.iter (printfn "%A")
0</langsyntaxhighlight>
{{out}}
<pre>RosettaCode 2016
Line 1,700 ⟶ 1,807:
=={{header|Factor}}==
This program expects a year passed in via command line argument. In case you are wondering — yes — Factor has a <tt>last-sunday-of-month</tt> word in its calendar vocabulary. This is par for the course when it comes to Factor.
<langsyntaxhighlight lang="factor">USING: calendar calendar.format command-line io kernel math math.parser
sequences ;
IN: rosetta-code.last-sunday
Line 1,710 ⟶ 1,817:
: main ( -- ) parse-year 12 [ process-month ] times drop ;
 
MAIN: main</langsyntaxhighlight>
{{out}}
<pre>
Line 1,729 ⟶ 1,836:
 
=={{header|FBSL}}==
<langsyntaxhighlight lang="qbasic">#APPTYPE CONSOLE
 
DIM date AS INTEGER, dayname AS STRING
Line 1,746 ⟶ 1,853:
 
PAUSE
</syntaxhighlight>
</lang>
{{out}}
<pre>2013-1-27
Line 1,769 ⟶ 1,876:
Their routine is not only fast, but flexible, in particular allowing Month + 1 so that DAYNUM(Y,M + 1,0) gives the last day of month M for M = 1 to 12, with no agony over which month has what last day and leap years or not. If W is the day of week desired, all that remains is to use MOD(D - W,7) to determine the offset back to the desired day of the week and make that shift. There is a problem with the MOD function when negative numbers are involved: it may or may not (depending on computer, compiler, language) return a negative result; by adding 7 and taking a MOD again, this variation is suppressed.
 
The source uses the MODULE protocol for convenience in its usage in larger projects (which contain a calculation for Easter, daylight savings changeover dates, solar azimuth and altitude, etc. which have been removed here), but requires only F77 features, except for the annoyance of the MUNYAD function returning a TYPE(DATEBAG) result to get the three parts. This is an example where a palindromic programming protocol would be so much better. One would write <langsyntaxhighlight Fortranlang="fortran"> D = DAYNUM(Y,M,D) !Daynumber from date.
DAYNUM(Y,M,D) = D !Date parts from a day number.</langsyntaxhighlight>
But alas, only pl/i offers palindromic functions, and only for SUBSTR.
 
<syntaxhighlight lang="fortran">
<lang Fortran>
MODULE DATEGNASH
C Calculate conforming to complex calendarical contortions.
Line 2,030 ⟶ 2,137:
GO TO 10
END
</syntaxhighlight>
</lang>
And after all that, results:
<pre>
Line 2,056 ⟶ 2,163:
=={{header|Free Pascal}}==
 
<langsyntaxhighlight lang="pascal">
program sundays;
 
Line 2,093 ⟶ 2,200:
end;
end.
</syntaxhighlight>
</lang>
 
{{out}}
Line 2,113 ⟶ 2,220:
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight FreeBASIClang="freebasic">' version 23-06-2015
' compile with: fbc -s console
 
Line 2,197 ⟶ 2,304:
 
Loop
End</langsyntaxhighlight>
{{out}}
<pre>For what year do you want to find the last Sunday of the month
Line 2,217 ⟶ 2,324:
 
=={{header|Frink}}==
<langsyntaxhighlight lang="frink">d = parseDate[ARGS@0]
for m = 1 to 12
{
Line 2,223 ⟶ 2,330:
n = d - parseInt[d -> ### u ###] days
println[n->###yyyy-MM-dd###]
}</langsyntaxhighlight>
 
{{out}}
Line 2,242 ⟶ 2,349:
=={{header|Fōrmulæ}}==
 
{{FormulaeEntry|page=https://formulae.org/?script=examples/Last_day_of_each_month_of_a_year%2C_being_a_given_weekday}}
Fōrmulæ programs are not textual, visualization/edition of programs is done showing/manipulating structures but not text. Moreover, there can be multiple visual representations of the same program. Even though it is possible to have textual representation &mdash;i.e. XML, JSON&mdash; they are intended for storage and transfer purposes more than visualization and edition.
 
'''Solution'''
Programs in Fōrmulæ are created/edited online in its [https://formulae.org website], However they run on execution servers. By default remote servers are used, but they are limited in memory and processing power, since they are intended for demonstration and casual use. A local server can be downloaded and installed, it has no limitations (it runs in your own computer). Because of that, example programs can be fully visualized and edited, but some of them will not run if they require a moderate or heavy computation/memory resources, and no local server is being used.
 
The following function retrieves the last day of each month of a year, being a given weekday:
In '''[https://formulae.org/?example=Last_day_of_each_month_of_a_year%2C_being_a_given_weekday this]''' page you can see the program(s) related to this task and their results.
 
[[File:Fōrmulæ - Last day of each month of a year, being a given weekday 01.png]]
 
'''Test case'''
 
[[File:Fōrmulæ - Last day of each month of a year, being a given weekday 02.png]]
 
[[File:Fōrmulæ - Last day of each month of a year, being a given weekday 03.png]]
 
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">
Long y, c, d, i
 
void local fn sunday( m as Short, nd as Short)
if d > nd then d -= 7 // Don't overshoot
print y @"–"m @"–"d
d = d + 35 - nd // Advance 5 weeks minus month length
end fn
 
void local fn month( m as Short )
select m
case 1
if ( y mod 4 > 0 ) or ( y mod 100 == 0 and y mod 400 > 0 )
fn sunday( m, 31)
fn sunday( m + 1, 28)
else
d += 1 // Extra day for leap year
fn sunday( m, 31 )
fn sunday( m + 1, 29 )
end if
case 3, 5, 7, 8, 10, 12
fn sunday( m, 31 )
case 4, 6, 9, 11
fn sunday( m, 30 )
end select
end fn
 
y = 2024
// Concentrate from D. Knuth: CACM 1962;5:209
c = y / 100 + 1
d = ( 3 * c / 4 ) - ( 5 * y / 4 )
d = ( d mod 7 ) + 36 // A Sunday in February
for i = 1 to 12
fn month( i )
next
 
handleevents
</syntaxhighlight>
Output:
<pre>
2024-1-28
2024-2-25
2024-3-31
2024-4-28
2024-5-26
2024-6-30
2024-7-28
2024-8-25
2024-9-29
2024-10-27
2024-11-24
2024-12-29
</pre>
 
=={{header|Gambas}}==
<langsyntaxhighlight lang="gambas">Public Sub Form_Open()
Dim sYear As String 'To store the year chosen
Dim siDay, siMonth, siWeekday As Short 'Day, Month and Weekday
Line 2,267 ⟶ 2,438:
Next
 
End</langsyntaxhighlight>
Output:
<pre>
Line 2,289 ⟶ 2,460:
This is different from the Go code for [[Last Friday of each month]]. It uses the fact that time functions in Go correct for dates: if you enter 32nd of october, Go corrects to 1st of November. So that if 29th of February is corrected to 1st of March, chosen year is not a leap year.
 
<langsyntaxhighlight lang="go">package main
 
import (
Line 2,335 ⟶ 2,506:
}
}
</syntaxhighlight>
</lang>
 
<pre>
Line 2,357 ⟶ 2,528:
=={{header|Groovy}}==
Solution:
<langsyntaxhighlight lang="groovy">enum Day {
Sun, Mon, Tue, Wed, Thu, Fri, Sat
static Day valueOf(Date d) { Day.valueOf(d.format('EEE')) }
Line 2,372 ⟶ 2,543:
!months[monthStr] ? months + [(monthStr):sunday] : months
}.values().sort()
}</langsyntaxhighlight>
 
Test:
<langsyntaxhighlight lang="groovy">def ymd = { it.format('yyyy-MM-dd') }
def lastSundays = lastWeekDays.curry(Day.Sun)
lastSundays(args[0] as int).each { println (ymd(it)) }</langsyntaxhighlight>
 
Execution (Cygwin on Windows 7):
Line 2,397 ⟶ 2,568:
 
=={{header|Haskell}}==
<langsyntaxhighlight Haskelllang="haskell">import Data.List (find, intercalate, transpose)
import Data.Maybe (fromJust)
import Data.Time.Calendar
Line 2,437 ⟶ 2,608:
p x =
let (_, _, day) = toWeekDate x
in dayOfWeek == day</langsyntaxhighlight>
{{Out}}
<pre>2018-01-28 2019-01-27 2020-01-26 2021-01-31 2022-01-30 2023-01-29
Line 2,456 ⟶ 2,627:
This is a trivial adaptation of the solution to the "Last Friday of each month" task
and works in both languages:
<langsyntaxhighlight lang="unicon">procedure main(A)
every write(lastsundays(!A))
end
Line 2,475 ⟶ 2,646:
end
link datetime, printf</langsyntaxhighlight>
 
Sample run:
Line 2,509 ⟶ 2,680:
=={{header|J}}==
Same solution as for [[Last_Friday_of_each_month#J]]
<langsyntaxhighlight lang="j">require'dates'
last_sundays=: 12 {. [: ({:/.~ }:"1)@(#~ 0 = weekday)@todate (i.366) + todayno@,&1 1</langsyntaxhighlight>
 
Example use:
<langsyntaxhighlight lang="j"> last_sundays 2013
2013 1 27
2013 2 24
Line 2,525 ⟶ 2,696:
2013 10 27
2013 11 24
2013 12 29</langsyntaxhighlight>
 
=={{header|Java}}==
<langsyntaxhighlight lang="java">import java.util.Scanner;
 
public class LastSunday
Line 2,599 ⟶ 2,770:
s.close();
}
}</langsyntaxhighlight>
 
{{out}}
Line 2,620 ⟶ 2,791:
</pre>
===Java 8===
<langsyntaxhighlight Javalang="java">import java.time.*;
import java.util.stream.*;
import static java.time.temporal.TemporalAdjusters.*;
Line 2,648 ⟶ 2,819:
}
 
}</langsyntaxhighlight>
 
=={{header|JavaScript}}==
===ES5===
====Iteration====
<langsyntaxhighlight lang="javascript">function lastSundayOfEachMonths(year) {
var lastDay = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
var sundays = [];
Line 2,668 ⟶ 2,839:
}
 
console.log(lastSundayOfEachMonths(2013).join('\n'));</langsyntaxhighlight>
{{output}}
<pre>2013-01-27
Line 2,684 ⟶ 2,855:
 
====Functional composition====
<langsyntaxhighlight JavaScriptlang="javascript">(function () {
'use strict';
 
Line 2,756 ⟶ 2,927:
.join('\n');
 
})();</langsyntaxhighlight>
 
{{Out}}
Line 2,773 ⟶ 2,944:
 
===ES6===
<langsyntaxhighlight JavaScriptlang="javascript">(() => {
'use strict'
 
Line 2,878 ⟶ 3,049:
// MAIN ---
return main();
})();</langsyntaxhighlight>
{{Out}}
<pre>2019-01-27 2020-01-26 2021-01-31 2022-01-30
Line 2,896 ⟶ 3,067:
{{works with|jq|1.4}}
'''Foundations'''
<langsyntaxhighlight lang="jq"># In case your jq does not have "until" defined:
def until(cond; next):
def _until:
Line 2,921 ⟶ 3,092:
| if iso == "iso" or iso == "ISO" then 1 + ((. + 5) % 7)
else . % 7
end ;</langsyntaxhighlight>
'''findLastSundays'''
<langsyntaxhighlight lang="jq"># year and month are numbered conventionally
def findLastSunday(year; month):
def isLeapYear:
Line 2,945 ⟶ 3,116:
 
$year|tonumber|findLastSundays
</syntaxhighlight>
</lang>
'''Example:'''
<langsyntaxhighlight lang="sh">$ jq --arg year 2013 -n -r -f findLastSundays.jq
YEAR: 2013
January 27
Line 2,960 ⟶ 3,131:
October 27
November 24
December 29</langsyntaxhighlight>
 
=={{header|Julia}}==
<syntaxhighlight lang="julia">
<lang Julia>
isdefined(:Date) || using Dates
 
Line 2,989 ⟶ 3,160:
end
end
</syntaxhighlight>
</lang>
 
This code uses the <code>Dates</code> module, which is being incorporated into Julian's standard library with the current development version (<tt>0.4</tt>). I've used <code>isdefined</code> to make this code good for the current stable version (<tt>0.3</tt>) as well as for future releases. If <code>Dates</code> is not installed on your instance of Julian try <code>Pkg.add("Dates")</code> from the <tt>REPL</tt>.
Line 3,020 ⟶ 3,191:
 
=={{header|K}}==
<syntaxhighlight lang="k">
<lang K>
/ List the dates of last Sundays of each month of
/ a given year
Line 3,034 ⟶ 3,205:
main: {[y]; lsd1[y];`0: ,"Dates of last Sundays of ",($y); 12 10#arr}
 
</syntaxhighlight>
</lang>
The output of a session with the above script is given below:
{{out}}
Line 3,059 ⟶ 3,230:
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.0.6
 
import java.util.*
Line 3,079 ⟶ 3,250:
}
}
}</langsyntaxhighlight>
Sample input/output:
{{out}}
Line 3,100 ⟶ 3,271:
 
=={{header|Lasso}}==
<langsyntaxhighlight Lassolang="lasso">local(
year = integer(web_request -> param('year') || 2013),
date = date(#year + '-1-1'),
Line 3,120 ⟶ 3,291:
}
}
#lastsu -> join('<br />')</langsyntaxhighlight>
<pre>27 January
24 February
Line 3,136 ⟶ 3,307:
=={{header|Liberty BASIC}}==
This program goes a step further and provides a function definition, NthDayOfMonth(), that returns the date of any occurrence of a day in any given month and year. For example: The third Monday in February, the last Monday in May, the fourth Thursday in November, etc.
<syntaxhighlight lang="lb">
<lang lb>
yyyy=2013: if yyyy<1901 or yyyy>2099 then end
nda$="Lsu"
Line 3,217 ⟶ 3,388:
end select
end function
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 3,237 ⟶ 3,408:
=={{header|LiveCode}}==
Abstracted version of "last friday of each month". LiveCode dateItem item 7 is day of week. It is numbered 1 (Sunday) to 7 (Saturday).
<langsyntaxhighlight LiveCodelang="livecode">function lastDay yyyy, dayofweek
-- year,month num,day of month,hour in 24-hour time,minute,second,numeric day of week.
convert the long date to dateitems
Line 3,259 ⟶ 3,430:
sort mydays ascending numeric
return mydays
end lastDay</langsyntaxhighlight>Example<syntaxhighlight lang LiveCode="livecode">put lastDay(2013, 1)</langsyntaxhighlight>Output<pre>1 27
2 24
3 31
Line 3,273 ⟶ 3,444:
 
=={{header|Lua}}==
<langsyntaxhighlight Lualang="lua">function isLeapYear (y)
return (y % 4 == 0 and y % 100 ~=0) or y % 400 == 0
end
Line 3,292 ⟶ 3,463:
end
 
lastWeekdays("Sunday", tonumber(arg[1]))</langsyntaxhighlight>
Command line session:
<pre>>lua lastSundays.lua 2013
Line 3,311 ⟶ 3,482:
 
=={{header|Maple}}==
<langsyntaxhighlight Maplelang="maple">sundays := proc(year)
local i, dt, change, last_days;
last_days := [31,28,31,30,31,30,31,31,30,31,30,31];
Line 3,328 ⟶ 3,499:
end proc;
 
sundays(2013);</langsyntaxhighlight>
{{Out|Output}}
<pre>
Line 3,346 ⟶ 3,517:
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<langsyntaxhighlight lang="mathematica">LastSundays[year_] :=
Table[Last@
DayRange[{year, i},
DatePlus[{year, i}, {{1, "Month"}, {-1, "Day"}}], Sunday], {i,
12}]
LastSundays[2013]</langsyntaxhighlight>
{{out}}
<pre>{{2013, 1, 27}, {2013, 2, 24}, {2013, 3, 31}, {2013, 4, 28}, {2013, 5,
Line 3,358 ⟶ 3,529:
 
=={{header|Nim}}==
<langsyntaxhighlight lang="nim">import os, strutils, times
 
const
Line 3,371 ⟶ 3,542:
var date = initDateTime(lastDay, month, year, 0, 0, 0)
date = date - days(DayDiffs[date.weekday])
echo date.format("yyyy-MM-dd")</langsyntaxhighlight>
Sample usage:
<pre>./lastsunday 2013
Line 3,388 ⟶ 3,559:
 
=={{header|OCaml}}==
<syntaxhighlight lang="ocaml">
<lang OCaml>
let is_leap_year y =
(* See OCaml solution on Rosetta Code for
Line 3,430 ⟶ 3,601:
2 -> print_last_sundays( int_of_string (Sys.argv.(1)));
|_ -> invalid_arg "Please enter a year";
</syntaxhighlight>
</lang>
Sample usage:
<pre> ocaml sundays.ml 2013
Line 3,447 ⟶ 3,618:
 
=={{header|Oforth}}==
<langsyntaxhighlight Oforthlang="oforth">import: date
 
: lastSunday(y)
Line 3,454 ⟶ 3,625:
Date newDate(y, m, Date.DaysInMonth(y, m))
while(dup dayOfWeek Date.SUNDAY <>) [ addDays(-1) ] println
] ;</langsyntaxhighlight>
 
{{out}}
Line 3,474 ⟶ 3,645:
=={{header|PARI/GP}}==
 
<langsyntaxhighlight lang="parigp">\\ Normalized Julian Day Number from date
njd(D) =
{
Line 3,498 ⟶ 3,669:
}
 
for (m=1, 12, a=njd([2013,m+1,0]); print(njdate(a-(a+6)%7)))</langsyntaxhighlight>
 
Output:<pre>
Line 3,516 ⟶ 3,687:
 
=={{header|Perl}}==
<langsyntaxhighlight Perllang="perl">#!/usr/bin/perl
use strict ;
use warnings ;
Line 3,529 ⟶ 3,700:
my $ymd = $date->ymd ;
print "$ymd\n" ;
}</langsyntaxhighlight>
{{out}}
<pre>2013-01-27
Line 3,547 ⟶ 3,718:
=={{header|Phix}}==
Requires 0.8.1 (day_of_week() is now ISO 8601 compliant)
<!--<langsyntaxhighlight Phixlang="phix">(phixonline)-->
<span style="color: #008080;">include</span> <span style="color: #000000;">timedate</span><span style="color: #0000FF;">.</span><span style="color: #000000;">e</span>
Line 3,572 ⟶ 3,743:
<span style="color: #008080;">end</span> <span style="color: #008080;">procedure</span>
<span style="color: #000000;">last_day_of_month</span><span style="color: #0000FF;">(</span><span style="color: #000000;">2013</span><span style="color: #0000FF;">,</span><span style="color: #000000;">SUNDAY</span><span style="color: #0000FF;">)</span>
<!--</langsyntaxhighlight>-->
{{out}}
<pre>
Line 3,590 ⟶ 3,761:
 
=={{header|PHP}}==
<langsyntaxhighlight PHPlang="php"><?php
// Created with PHP 7.0
 
Line 3,605 ⟶ 3,776:
 
printLastSundayOfAllMonth($argv[1]);
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 3,622 ⟶ 3,793:
 
=={{header|PicoLisp}}==
<langsyntaxhighlight PicoLisplang="picolisp">(de lastSundays (Y)
(for M 12
(prinl
Line 3,628 ⟶ 3,799:
(find '((D) (= "Sunday" (day D)))
(mapcar '((D) (date Y M D)) `(range 31 22)) )
"-" ) ) ) )</langsyntaxhighlight>
Test:
<langsyntaxhighlight PicoLisplang="picolisp">: (lastSundays 2013)
2013-01-27
2013-02-24
Line 3,642 ⟶ 3,813:
2013-10-27
2013-11-24
2013-12-29</langsyntaxhighlight>
 
=={{header|PowerShell}}==
<syntaxhighlight lang="powershell">
<lang PowerShell>
function last-dayofweek {
param(
Line 3,659 ⟶ 3,830:
}
last-dayofweek 2013 "Sunday"
</syntaxhighlight>
</lang>
<b>Output:</b>
<pre>
Line 3,679 ⟶ 3,850:
This script finds the first and/or last or all dates of any of the days of week; accepts <code>[Int32]</code> and <code>[DateTime]</code> values for Month and Year parameters; outputs <code>[DateTime]</code> objects by default but has an option to output time strings in various formats. This script also allows for pipeline input based mainly upon the Month parameter.
This script has a syntax as complex as any PowerShell Cmdlet because it attempts to do everything.
<syntaxhighlight lang="powershell">
<lang PowerShell>
function Get-Date0fDayOfWeek
{
Line 3,777 ⟶ 3,948:
}
}
</syntaxhighlight>
</lang>
The default is to return <code>[DateTime]</code> objects:
<syntaxhighlight lang="powershell">
<lang PowerShell>
1..12 | Get-Date0fDayOfWeek -Year 2013 -Last -Sunday
</syntaxhighlight>
</lang>
{{Out}}
<pre>
Line 3,798 ⟶ 3,969:
</pre>
Return the <code>[DateTime]</code> objects as strings (using the default string format):
<syntaxhighlight lang="powershell">
<lang PowerShell>
1..12 | Get-Date0fDayOfWeek -Year 2013 -Last -Sunday -AsString
</syntaxhighlight>
</lang>
{{Out}}
<pre>
Line 3,817 ⟶ 3,988:
</pre>
Return the <code>[DateTime]</code> objects as strings (specifying the string format):
<syntaxhighlight lang="powershell">
<lang PowerShell>
1..12 | Get-Date0fDayOfWeek -Year 2013 -Last -Sunday -AsString -Format yyyy-MM-dd
</syntaxhighlight>
</lang>
{{Out}}
<pre>
Line 3,837 ⟶ 4,008:
 
=={{header|PureBasic}}==
<langsyntaxhighlight PureBasiclang="purebasic">Procedure LastSundayOfEachMonth(yyyy.i,List lfem.i())
Define dv.i=ParseDate("%yyyy",Str(yyyy)), mv.i=1
NewList d.i()
Line 3,870 ⟶ 4,041:
EndIf
Print("...End")
Input()</langsyntaxhighlight>
{{out}}
<pre>Input Year [ 1971 < y < 2038 ]: 2013
Line 3,889 ⟶ 4,060:
 
=={{header|Python}}==
<langsyntaxhighlight lang="python">
import sys
import calendar
Line 3,903 ⟶ 4,074:
last_sunday = max(week[-1] for week in calendar.monthcalendar(year, month))
print('{}-{}-{:2}'.format(year, calendar.month_abbr[month], last_sunday))
</syntaxhighlight>
</lang>
 
<b>Output</b>:
<syntaxhighlight lang="text">
2013-Jan-27
2013-Feb-24
Line 3,919 ⟶ 4,090:
2013-Nov-24
2013-Dec-29
</syntaxhighlight>
</lang>
 
=={{header|QuickBASIC 4.5}}==
QuickBASIC 4.5 doesn't have a way to manage dates easily. Following you'll see my solution for this task in QuickBASIC/QBASIC
<syntaxhighlight lang="qbasic">
<lang QBASIC>
' PROGRAM Last Sundays in Quick BASIC 4.5 (LASTSQB1)
' This program will calculate the last Sundays of each month in a given year.
Line 4,047 ⟶ 4,218:
 
END FUNCTION
</syntaxhighlight>
</lang>
 
{{out}}
Line 4,069 ⟶ 4,240:
==={{header|VB-DOS 1.0}}===
As VB-DOS uses serial numbers for dates and includes some useful functions to work with dates, it is easier to do this code in VB-DOS.
<syntaxhighlight lang="qbasic">
<lang QBASIC>
OPTION EXPLICIT
 
Line 4,122 ⟶ 4,293:
LastSundayOfMonth = iLSoM
END FUNCTION
</syntaxhighlight>
</lang>
 
{{out}}
Line 4,144 ⟶ 4,315:
=={{header|Quackery}}==
 
<langsyntaxhighlight Quackerylang="quackery"> [ over 3 < if [ 1 - ]
dup 4 / over +
over 100 / -
Line 4,191 ⟶ 4,362:
[ 0 lastwkdays ] is lastsundays ( year --> )
 
2013 lastsundays</langsyntaxhighlight>
 
{{out}}
Line 4,209 ⟶ 4,380:
 
=={{header|R}}==
<langsyntaxhighlight lang="rsplus">
last_sundays <- function(year) {
for (month in 1:12) {
Line 4,224 ⟶ 4,395:
}
last_sundays(2004)
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 4,242 ⟶ 4,413:
 
=={{header|Racket}}==
<langsyntaxhighlight lang="racket">
#lang racket
(require srfi/19 math)
Line 4,284 ⟶ 4,455:
(for ([d (last-sundays 2013)])
(displayln (~a (date->string d "~a ~d ~b ~Y"))))
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 4,305 ⟶ 4,476:
 
{{works with|rakudo|2018.03}}
<syntaxhighlight lang="raku" perl6line>sub MAIN ($year = Date.today.year) {
for 1..12 -> $month {
my $month-end = Date.new($year, $month, Date.new($year,$month,1).days-in-month);
say $month-end - $month-end.day-of-week % 7;
}
}</langsyntaxhighlight>
 
{{out|input=2018}}
Line 4,327 ⟶ 4,498:
 
=={{header|REBOL}}==
<langsyntaxhighlight REBOLlang="rebol">#!/usr/bin/env rebol
 
last-sundays-of-year: function [
Line 4,343 ⟶ 4,514:
 
foreach sunday last-sundays-of-year to-integer system/script/args [print sunday]
</syntaxhighlight>
</lang>
{{out}}
<pre>./last-sundays.reb 2013
Line 4,365 ⟶ 4,536:
except for the innards of the first '''DO''' loop. <br><br>
The &nbsp; '''lastDOW''' &nbsp; subroutine can be used for any day-of-the-week for any month for any year.
<langsyntaxhighlight lang="rexx">/*REXX program displays dates of last Sundays of each month for any year*/
parse arg yyyy
do j=1 for 12
Line 4,443 ⟶ 4,614:
.er: arg ,_;say; say '***error!*** (in LASTDOW)';say /*tell error, and */
say word('day-of-week month year excess',arg(2)) arg(1) a._
say; exit 13 /*... then exit. */</langsyntaxhighlight>
{{out|output|text=&nbsp; when using the default input &nbsp; (the current year, &nbsp; 2013):}}
<pre>
Line 4,461 ⟶ 4,632:
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
see "What year to calculate (yyyy) : "
give year
Line 4,480 ⟶ 4,651:
next
next
</syntaxhighlight>
</lang>
Output:
<pre>
Line 4,497 ⟶ 4,668:
2013-11-24
2013-12-29
</pre>
 
=={{header|RPL}}==
<code>WKDAY</code> is defined at [[Day of the week#RPL|Day of the week]]
{{works with|HP|48}}
≪ → year
≪ { }
.02 .13 '''FOR''' month
1 month .13 == DUP .01 month IFTE SWAP year + 1000000 / + + <span style="color:grey">@ Generate 1st day of the following month</span>
DUP <span style="color:blue">WKDAY</span> NEG DATE+ +
.01 '''STEP'''
2 FIX <span style="color:grey">@ Display October Sunday as ##.10 and not as ##.1</span>
≫ ≫ '<span style="color:blue">LSTSU</span>' STO
 
2013 <span style="color:blue">LSTSU</span>
{{out}}
<pre>
1: { 27.01 24.02 24.03 28.04 26.05 30.06 28.07 25.08 29.09 27.10 24.11 29.12 }
</pre>
 
=={{header|Ruby}}==
<langsyntaxhighlight lang="ruby">require 'date'
 
def last_sundays_of_year(year = Date.today.year)
Line 4,509 ⟶ 4,698:
end
 
puts last_sundays_of_year(2013)</langsyntaxhighlight>
 
{{out}}
Line 4,529 ⟶ 4,718:
 
=={{header|Run BASIC}}==
<langsyntaxhighlight lang="runbasic">input "What year to calculate (yyyy) : ";year
print "Last Sundays in ";year;" are:"
dim month(12)
Line 4,546 ⟶ 4,735:
if x = 4 then print year ; "-";right$("0"+str$(n),2);"-" ; i
next
next</langsyntaxhighlight>
<pre>
What year to calculate (yyyy) : ?2013
Line 4,564 ⟶ 4,753:
 
=={{header|Rust}}==
<langsyntaxhighlight lang="rust">use std::env::args;
use time::{Date, Duration};
 
Line 4,577 ⟶ 4,766:
println!("{}", date - days_back);
});
}</langsyntaxhighlight>
{{out}}
<pre>
Line 4,595 ⟶ 4,784:
 
=={{header|S-BASIC}}==
<langsyntaxhighlight lang="basic">
rem - return p mod q
function mod(p, q = integer) = integer
Line 4,666 ⟶ 4,855:
print shortmonth(m);" ";lastkday(SUNDAY, m, y)
next m
end</langsyntaxhighlight>
{{out}}
<pre>
Line 4,684 ⟶ 4,873:
 
=={{header|Scala}}==
<langsyntaxhighlight Scalalang="scala">object FindTheLastSundayOfEachMonth extends App {
import java.util.Calendar._
val cal = getInstance
Line 4,698 ⟶ 4,887:
val fmt = new java.text.SimpleDateFormat("yyyy-MM-dd")
println(lastSundaysOf(year).map(fmt.format) mkString "\n")
}</langsyntaxhighlight>
===Java 8===
<langsyntaxhighlight Scalalang="scala">object FindTheLastSundayOfEachMonth extends App {
def lastSundaysOf(year: Int) = (1 to 12).map{month =>
import java.time._; import java.time.temporal.TemporalAdjusters._
Line 4,707 ⟶ 4,896:
val year = args.headOption.map(_.toInt).getOrElse(java.time.LocalDate.now.getYear)
println(lastSundaysOf(year) mkString "\n")
}</langsyntaxhighlight>
 
=={{header|Seed7}}==
Line 4,714 ⟶ 4,903:
Applicable to any day of the week, cf. [[http://rosettacode.org/wiki/Last_Friday_of_each_month#Seed7]].
 
<langsyntaxhighlight lang="seed7">$ include "seed7_05.s7i";
include "time.s7i";
include "duration.s7i";
Line 4,743 ⟶ 4,932:
end for;
end if;
end func;</langsyntaxhighlight>
 
{{out}} when called with <tt>s7 rosetta/lastWeekdayInMonth 7 2013</tt>:
Line 4,762 ⟶ 4,951:
 
=={{header|Sidef}}==
<langsyntaxhighlight lang="ruby">var dt = require('DateTime');
var (year=2016) = ARGV.map{.to_i}...
 
Line 4,776 ⟶ 4,965:
 
say date.ymd;
}</langsyntaxhighlight>
{{out}}
<pre>
Line 4,795 ⟶ 4,984:
 
=={{header|Smalltalk}}==
<langsyntaxhighlight lang="smalltalk">
Pharo Smalltalk
 
Line 4,805 ⟶ 4,994:
thenSelect: [ :each |
(((Date daysInMonth: each monthIndex forYear: yr) - each dayOfMonth) <= 6) and: [ each year = yr ] ] ]
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 4,813 ⟶ 5,002:
 
=={{header|Stata}}==
<langsyntaxhighlight lang="stata">program last_sundays
args year
clear
Line 4,839 ⟶ 5,028:
| 24nov2013 |
| 29dec2013 |
+-----------+</langsyntaxhighlight>
 
=={{header|Swift}}==
<langsyntaxhighlight Swiftlang="swift">import Foundation
 
func lastSundays(of year: Int) -> [Date] {
Line 4,872 ⟶ 5,061:
dateFormatter.dateStyle = .short
 
print(lastSundays(of: 2013).map(dateFormatter.string).joined(separator: "\n"))</langsyntaxhighlight>
{{out}}
<pre>
Line 4,890 ⟶ 5,079:
 
=={{header|Tcl}}==
<langsyntaxhighlight lang="tcl">proc lastSundays {{year ""}} {
if {$year eq ""} {
set year [clock format [clock seconds] -gmt 1 -format "%Y"]
Line 4,903 ⟶ 5,092:
return $result
}
puts [join [lastSundays {*}$argv] "\n"]</langsyntaxhighlight>
{{out}}
When called as: “<code>tclsh lastSundays.tcl 2013</code>” (or with the year argument omitted during 2013)
Line 4,926 ⟶ 5,115:
This uses the programs awk and cal, which are usually installed on any POSIXlike system.
 
<langsyntaxhighlight lang="sh">last_sundays() {
local y=$1
for (( m=1; m<=12; ++m )); do
cal $m $y | awk -vy=$y -vm=$m '/^.[0-9]/ {d=$1} END {print y"-"m"-"d}'
done
}</langsyntaxhighlight>
 
{{Out}}
Line 4,950 ⟶ 5,139:
=={{header|VBScript}}==
{{works with|Windows Script Host|*}}
<syntaxhighlight lang="vbscript">
<lang VBScript>
strYear = WScript.StdIn.ReadLine
 
Line 4,957 ⟶ 5,146:
WScript.Echo d - Weekday(d) + 1
Next
</syntaxhighlight>
</lang>
 
=={{header|Wren}}==
{{libheader|Wren-date}}
<langsyntaxhighlight ecmascriptlang="wren">import "os" for Process
import "./date" for Date
var args = Process.arguments
Line 4,981 ⟶ 5,170:
System.print(dt.addDays(-wd))
}
}</langsyntaxhighlight>
 
{{out}}
<pre>
$ wren last_sundayFind_the_last_Sunday_of_each_month.wren 2013
The dates of the last Sundays in the month for 2013 are:
2013-01-27
Line 5,000 ⟶ 5,189:
2013-12-29
 
$ wren last_sundayFind_the_last_Sunday_of_each_month.wren 2020
The dates of the last Sundays in the month for 2020 are:
2020-01-26
Line 5,014 ⟶ 5,203:
2020-11-29
2020-12-27
</pre>
 
=={{header|XPL0}}==
<syntaxhighlight lang="xpl0">func WeekDay(Year, Month, Day); \Return day of week (0=Sun, 1=Mon ... 6=Sat)
int Year, Month, Day; \works for years from 1583 onward
[if Month<=2 then [Month:= Month+12; Year:= Year-1];
return rem((Day-1 + (Month+1)*26/10 + Year + Year/4 + Year/100*6 + Year/400)/7);
];
int Year, Month, LastDay, WD;
[Year:= IntIn(8); \from command line
for Month:= 1 to 12 do
[LastDay:= WeekDay(Year, Month+1, 1) - WeekDay(Year, Month, 28);
if LastDay < 0 then LastDay:= LastDay + 7;
LastDay:= LastDay + 27; \ = number of days in Month
WD:= WeekDay(Year, Month, LastDay);
LastDay:= LastDay - WD;
IntOut(0, Year); ChOut(0, ^-);
if Month < 10 then ChOut(0, ^0); IntOut(0, Month); ChOut(0, ^-);
IntOut(0, LastDay); CrLf(0);
];
]</syntaxhighlight>
 
{{out}}
<pre>
2013-01-27
2013-02-24
2013-03-31
2013-04-28
2013-05-26
2013-06-30
2013-07-28
2013-08-25
2013-09-29
2013-10-27
2013-11-24
2013-12-29
</pre>
 
1,983

edits