var
x, y: integer;
begin
Readln(x);
if x < -50 then
y := 7 * x * x;
if (x > -50) and (x < 50) then
y := Abs(3 * x)
else
y := x * x * x;
Writeln('y = ', y);
end.
Объяснение:
var
x, y: integer;
begin
Readln(x);
if x < -50 then
y := 7 * x * x;
if (x > -50) and (x < 50) then
y := Abs(3 * x)
else
y := x * x * x;
Writeln('y = ', y);
end.
Объяснение: