Курсовая работа: Приближенное вычисление значений определенного интеграла
xt1:=xt;
yt1:=yt;
end;
repeat until keypressed;
closegraph;
end;
function pr:real;
var s, x:real;
begin
s:=0;
x:=a;
for i:=1 to n do
begin
s:=s+abs (f(x))*h;
x:=x+h;
end;
pr:=s;
end;
function tr:real;
var s, x:real;
begin
s:=0;
x:=a;
for i:=1 to n do
begin
s:=s+(f(x)+f (x+h))/2*h;
x:=x+h;
end;
tr:=s;