home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / RECT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  438 b   |  20 lines

  1. uses
  2.   Crt, Graph;
  3. var
  4.   GraphDriver, GraphMode : integer;
  5.   x1, y1, x2, y2 : integer;
  6. begin
  7.   GraphDriver := Detect;
  8.   InitGraph(GraphDriver,GraphMode,'');
  9.   if GraphResult<> grOk then
  10.     Halt(1);
  11.   Randomize;
  12.   repeat
  13.     x1 := Random(GetMaxX);
  14.     y1 := Random(GetMaxY);
  15.     x2 := Random(GetMaxX - x1) + x1;
  16.     y2 := Random(GetMaxY - y1) + y1;
  17.     Rectangle(x1, y1, x2, y2);
  18.   until KeyPressed;
  19.   CloseGraph;
  20. end.