Курсовая работа: Дослідження методів чисельного інтегрування
setcolor(yellow);
Rectangle(10,10,625,465);
setcolor(lightgreen);
Rectangle(14,14,621,461);
setcolor(lightred);
for i:=1 to n do outtextxy(x+50,y+(i-1)*30,Items[i]);
repeat
for i:=1 to n do
if i<>point then HideCursor(x,y+(i-1)*30)
else DrawCursor(x,y+(i-1)*30);
ch:=WaitWhileKeypressed(FKey);
case ch of
#72: if point>1 then dec(point);
#80: if point<n then inc(point);
#27: point:=-1;
end;
until (ch=#13) or (ch=#27);
for i:=1 to n do HideCursor(x,y+(i-1)*30);
end;
procedure PrintArray(n:integer; m:TDelta);
var s0,s1:string;
begin
setfillstyle(1,lightblue);
bar(360,40,620,450);
for i:=1 to n do
begin
str(i,s0);
str(m[i]:5:10,s1);
if (i mod 25 =0) then