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

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm : integer;
  5.  
  6. begin
  7.   Gd := Detect;
  8.   InitGraph(Gd, Gm, '');
  9.   if GraphResult <> grOk then
  10.     Halt(1);
  11.   SetColor(GetMaxColor);
  12.   Circle(50, 50, 20);
  13.   FloodFill(50,50,GetMaxColor);
  14.   Readln;
  15.   CloseGraph;
  16. end.