Program myprg; var x,y: integer; begin writeln('x='); read (x); if (x> =0) then y: =0; if (x> 0) and (x< =1) then y: =x; else y: =sqr(sqr(x)); writeln ('y=',y); end. program1.pas(9) : встречено 'else', а ожидался оператор ошибка выходит

Tinusya Tinusya    3   10.08.2019 12:10    0

Ответы
marina27081981 marina27081981  04.10.2020 09:15
Program myprg;
var
x,y: integer;
begin
writeln('x=');
read (x);
if (x>=0) then y:=0;
if (x>0) and (x<=1) then y:=x
else y:=sqr(sqr(x));
writeln ('y=',y);
end.
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика