составить программу в паскале F(x)=sin1/x+2
var f,x,a,b: real;beginreadln(x);f:=(sin(1))/(x+2);write(f)end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
var f,x,a,b: real;
begin
readln(x);
f:=(sin(1))/(x+2);
write(f)
end.