Ответ:
program draw_shape;
uses Graph;
var
gd, gm, x, y, radius, number: Integer;
begin
Write('Enter a number: ');
Readln(number);
gd := detect;
initgraph(gd, gm, '');
if (number mod 2 = 0) then
x := 100;
y := 100;
line(x, y, x, y + 100);
end
else
x := 200;
radius := 50;
circle(x, y, radius);
end;
readln;
closegraph;
end.
Объяснение:
пожалуйста сделай ответ лучшим)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
program draw_shape;
uses Graph;
var
gd, gm, x, y, radius, number: Integer;
begin
Write('Enter a number: ');
Readln(number);
gd := detect;
initgraph(gd, gm, '');
if (number mod 2 = 0) then
begin
x := 100;
y := 100;
line(x, y, x, y + 100);
end
else
begin
x := 200;
y := 100;
radius := 50;
circle(x, y, radius);
end;
readln;
closegraph;
end.
Объяснение:
пожалуйста сделай ответ лучшим)