Create a program that, by the number of the month of the year, displays the corresponding month on the screen: 1-January,

Create a program that, by the number of the month of the year, displays the corresponding month on the screen: 1-January, 2-February, 3-March, 4-April, 5-May, 6-June, etc. “

program zz1;
var a: integer; // set up variables
begin
write (‘enter the month number’); // enter the month number from the keyboard
read (a);
case a of // depending on the entered month number, select the displayed answer
1: writeln (‘January 1’);
2: writeln (‘2-Feb’);
3: writeln (‘March 3’);
4: writeln (‘4-Apr’);
5: writeln (‘5-May’);
6: writeln (‘6-Jun’);
7: writeln (‘July 7’);
8: writeln (‘8-Aug’);
9: writeln (‘9-September’);
10: writeln (’10 -October ‘);
11: writeln (’11 -November ‘);
12: writeln (’12 -December ‘);
end;

end.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.