-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrezultat_2.pas
52 lines (52 loc) · 1.15 KB
/
rezultat_2.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
program ExempluStructuriControl;
type
Zi = (Lun, Mar, Mie, Joi, Vin, Sam, Dum);
var
Azi: Zi;
Contor: Integer;
function EsteWeekend(Ziua: Zi): Boolean;
begin
case Ziua of
Sam, Dum: EsteWeekend := True;
else
EsteWeekend := False;
end;
end;
procedure AfiseazaZi(Ziua: Zi);
begin
if EsteWeekend(Ziua) then
WriteLn('Este weekend.')
else
begin
WriteLn('Este o zi lucrătoare.');
end;
end;
begin
Azi := Lun;
Contor := 0;
repeat
WriteLn('Zi ', Contor + 1);
AfiseazaZi(Azi);
Azi := Succ(Azi);
Contor := Contor + 1;
until Azi = Dum;
WriteLn('Rezumatul săptămânii:');
for Azi := Lun to Dum do
begin
Write('Zi: ');
case Azi of
Lun: WriteLn('Luni');
Mar: WriteLn('Marți');
Mie: WriteLn('Miercuri');
Joi: WriteLn('Joi');
Vin: WriteLn('Vineri');
Sam: WriteLn('Sâmbătă');
Dum: WriteLn('Duminică');
end;
end;
while Contor > 0 do
begin
WriteLn('Numărătoare inversă: ', Contor);
Contor := Contor - 1;
end;
end.