This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

14 lines
328 B
ObjectPascal

// Оператор выбора. Случайная фигура
uses GraphABC;
begin
SetWindowSize(400,300);
var t := Random(1,5);
case t of
1: Circle(200,150,100);
2: Rectangle(100,100,300,200);
3: Ellipse(100,100,300,200);
4: RoundRect(100,100,300,200,20,20);
5: Line(100,100,300,200);
end;
end.