Ответ:
var
x,y,z:real;
begin
x := -1.0 * (0.2) * 1.0;
if x < 0 then y := tan(sqr(x))
else y := 1 + x*x*x;
z := exp(y) + sqrt(abs(sin(y*y*y)));
writeln(z);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
var
x,y,z:real;
begin
x := -1.0 * (0.2) * 1.0;
if x < 0 then y := tan(sqr(x))
else y := 1 + x*x*x;
z := exp(y) + sqrt(abs(sin(y*y*y)));
writeln(z);
end.