Составить программу в Pascal ABC ( GraphABC). Буду очень признателен. Вот основа программы, нужно нарисовать рисунок. uses Graph
Составить программу в Pascal ABC ( GraphABC). Буду очень признателен. Вот основа программы, нужно нарисовать рисунок. uses GraphABC; const s='Этот рисунок создан с помощью Паскаль АВС'; begin Window.Clear(clAquamarine); Font.Name:='Colibry'; Font.Size:=14; Font.Style:=fsItalic; Brush.Color:=clWhite; rectangle(Window.Width div 2-TextWidth(s) div 2,Window.Height-TextHeight(s), Window.Width div 2+TextWidth(s) div 2,Window.Height); textout(Window.Width div 2-TextWidth(s) div 2,Window.Height-TextHeight(s),s);
//рыбка 1 Brush.Color := clBlanchedAlmond; var FishBody1: array of Point := (new Point(150,150), new Point(50,170), new Point(100,100)); Polygon(FishBody1); //триугольное тело Pie(160,160,50,50,270); //хвост Pie(180,180,10,50,270); //плавник
//надпись Font.Name := 'Colibry'; Font.Size := 14; Font.Style := fsItalic; Brush.Color := ARGB(50,255,255,255); rectangle(Window.Width div 2 - TextWidth(s) div 2, Window.Height - TextHeight(s), Window.Width div 2 + TextWidth(s) div 2, Window.Height); textout(Window.Width div 2 - TextWidth(s) div 2, Window.Height - TextHeight(s), s); end.