Using the computational language in Coral we have that it will be possible to classify the seasons of the year through the dates of days and months.
integer month
integer day
month = Get next input
day = Get next input
if month == 1 and day > 0 and day < 32
Put "winter" to output
elseif month == 2 and day > 0 and day < 30
Put "winter" to output
elseif month == 3 and day > 0 and day < 32
if day < 20
Put "winter" to output
else
Put "spring" to output
elseif month == 4 and day > 0 and day < 31
Put "spring" to output
elseif month == 5 and day > 0 and day < 32
Put "spring" to output
elseif month == 6 and day > 0 and day < 31
if day < 21
Put "spring" to output
else
Put "summer" to output
elseif month == 7 and day > 0 and day < 32
Put "summer" to output
elseif month == 8 and day > 0 and day < 32
Put "summer" to output
elseif month == 9 and day > 0 and day < 31
if day < 22
Put "summer" to output
else
Put "autumn" to output
elseif month == 10 and day > 0 and day < 32
Put "autumn" to output
elseif month == 11 and day > 0 and day < 31
Put "autumn" to output
elseif month == 12 and day > 0 and day < 32
if day < 21
Put "autumn" to output
else
Put "winter" to output
else
Put "invalid" to output
See more about Coral at brainly.com/question/18502436
#SPJ1