begin
var x := ReadReal('Введите число:');
var result: real := 0;
if x > 3 then
result := 1.2 * x ** 2 - 3 * x - 9
else
result := 12.1 / (2 * x ** 2 + 1);
Print('ответ:', result);
end.
begin
var x := ReadReal('Введите число:');
var result: real := 0;
if x > 3 then
result := 1.2 * x ** 2 - 3 * x - 9
else
result := 12.1 / (2 * x ** 2 + 1);
Print('ответ:', result);
end.