Ответ:
Program p1;
var x,y:integer;
begin
writeln('Введите значение x');
readln(x);
if (x<=0) then y:=0
else if (x>0) and (x<=1) then y:=x
else if (x>1) then y:=sqr(x);
writeln(y);
end.
при вводе 12, выводит 144
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Program p1;
var x,y:integer;
begin
writeln('Введите значение x');
readln(x);
if (x<=0) then y:=0
else if (x>0) and (x<=1) then y:=x
else if (x>1) then y:=sqr(x);
writeln(y);
end.
при вводе 12, выводит 144
Объяснение: