0
var x,y: integer;
begin
readln(x); // Вводим -19
if (x<=0) then y:=0;
if (x>0) and (x<=1) then y:=x;
if (x>1) then y:=x*x;
writeln(y); // Получаем 0
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
0
Объяснение:
var x,y: integer;
begin
readln(x); // Вводим -19
if (x<=0) then y:=0;
if (x>0) and (x<=1) then y:=x;
if (x>1) then y:=x*x;
writeln(y); // Получаем 0
end.