Advertisement
CLazStudio

q198428415

Feb 21st, 2017
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.81 KB | None | 0 0
  1. program q198428415;
  2. uses GraphABC;
  3. var img:integer;
  4. begin
  5.   SetWindowCaption('Снеговик');
  6.   SetWindowSize(200,200);
  7.   ClearWindow($00FDF7D5);
  8.   CenterWindow;
  9.   SetPenMode(pmCopy);
  10.   SetPenStyle(psSolid);
  11.   SetPenWidth(2);
  12.   SetPenColor(clAqua);
  13.   SetBrushColor(clWhite);
  14.   SetBrushStyle(bsSolid);
  15.   Circle(93,143,42);
  16.   Ellipse(68,71,120,122);
  17.   Ellipse(83,46,112,81);
  18.   SetPenWidth(4);
  19.   SetPenColor(clBlack);
  20.   Line(78,97,45,105);
  21.   Line(108,96,142,108);
  22.   SetBrushColor($00004000);
  23.   RoundRect(90,28,110,53,8,8);
  24.   SetPenColor(clMaroon);
  25.   Line(141,71,140,181);
  26.   SetPenWidth(2);
  27.   Line(142,73,153,53);
  28.   Line(140,72,142,56);
  29.   Line(142,74,132,59);
  30.   Line(139,74,154,48);
  31.   SetPixel(92,62,clMaroon);
  32.   SetPixel(102,64,clMaroon);
  33.   SetPenColor($000080FF);
  34.   Line(96,69,110,77);
  35. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement