var x, y: real;
begin
if x <= 3 then
y := Power(x, 2) - 3*x + 9;
if x > 3 then
y := 1 / (Power(x, 2) + 6);
end.
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
var x, y: real;
begin
if x <= 3 then
y := Power(x, 2) - 3*x + 9;
if x > 3 then
y := 1 / (Power(x, 2) + 6);
end.