case a of
0:
begin
x := 1;
y := 1;
end
else
x := 2;
y := 2;
end;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
case a of
0:
begin
x := 1;
y := 1;
end
else
begin
x := 2;
y := 2;
end
end;