Ответ:
var step,x: real;
begin
step := 0.5;
x := 0.0;
while (x <= 9) do
writeln('y(',x:2:1,') = ',6*x-4:2:0);
x+=0.5;
end;
end.
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
var step,x: real;
begin
step := 0.5;
x := 0.0;
while (x <= 9) do
begin
writeln('y(',x:2:1,') = ',6*x-4:2:0);
x+=0.5;
end;
end.
Объяснение: