var x,f:real;begin Write('Введите x: '); Readln(x); if (x>-2.4) and (x<5.7) then f:=sqr(x) else f:=4; Writeln('F=',f)end.var x,f:real;begin Write('Введите x: '); Readln(x); if (x>0.2) and (x<0.9) then f:=sin(x) else f:=1; Writeln('F=',f)end.var a,b,c:real;begin Write('Введите три числа: '); Readln(a,b,c); Write('Условие ',a,'<',b,'<',c); if (b>a) and (b<c) then Writeln(' выполняется.') else Writeln(' не выполняется.'); Write('Условие ',b,'>',a,'>',c); if (a<b) and (a>c) then Writeln(' выполняется.') else Writeln(' не выполняется.')end.