Язык программирования Паскаль. Помогите написать программу по задаче (пример №2). Все задание во вложениях.
Answers & Comments
alexdjk3
1. function f( x: float ): float; var i: integer; begin for i := 0 to size-1 do if (fx[ i ] <= x) and (x <= fx[ i+1 ]) then begin f := (fy[ i+1 ] - fy[ i ]) / (fx[ i+1 ] - fx[ i ]) * (x - fx[ i ] ); break; end; end; ... x := a; dx := (b-a) / 10; while (x <= b) do begin writeln( x, ' => ', f(x) ); x := x + dx; end;
Answers & Comments
var i: integer;
begin
for i := 0 to size-1 do
if (fx[ i ] <= x) and (x <= fx[ i+1 ]) then
begin
f := (fy[ i+1 ] - fy[ i ]) / (fx[ i+1 ] - fx[ i ]) * (x - fx[ i ] );
break;
end;
end;
...
x := a;
dx := (b-a) / 10;
while (x <= b) do
begin
writeln( x, ' => ', f(x) );
x := x + dx;
end;
2. sqrt( pow( x, 4/5 ) + pow( x, (4-x)/5 ) ) + ln( abs(x-0.25) )