[latex] y= \left \{ {{9x,x \geq 5} \atop { \frac{ x^{2} -4}{4} ,x\ \textless \ 5}} \right. [/latex]
[latex] y= \left \{ {{9x,x \geq 5} \atop { \frac{ x^{2} -4}{4} ,x\ \textless \ 5}} \right. [/latex]
Ответ(ы) на вопрос:
var x,y:real;
begin
write('x=');readln(x);
if x>=5 then y:=9*x else y:=(x*x-4)/4;
writeln('y=',y:6:3);
end.
Не нашли ответ?
Похожие вопросы