var
x,y:real;
begin
readln(x);
if x > 0 then
y := sqr(x) * 4
else if x < 0 then
y := x*x - 8
else
y := 12 / (x - 1); (*здесь x-1, потому что на 0 делить нельзя*)
writeln('x = ', x:2);
writeln('y = ', y:2);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
var
x,y:real;
begin
readln(x);
if x > 0 then
y := sqr(x) * 4
else if x < 0 then
y := x*x - 8
else
y := 12 / (x - 1); (*здесь x-1, потому что на 0 делить нельзя*)
writeln('x = ', x:2);
writeln('y = ', y:2);
end.
if x > 0 then)