Паскаль если что
№9
var
y,x:Double;
begin
Readln(x);
If x > 1 then y:= (x*x)/(2*x+1);
If x < -2 then y:= -3*x+5;
If (x>=-2) and (x<=1) then y:=x;
Writeln(y);
end.
№10
x:integer;
If x>0 then Writeln('1');
If x<0 then Writeln('-1');
If x=0 then Writeln('0');
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Паскаль если что
№9
var
y,x:Double;
begin
Readln(x);
If x > 1 then y:= (x*x)/(2*x+1);
If x < -2 then y:= -3*x+5;
If (x>=-2) and (x<=1) then y:=x;
Writeln(y);
end.
№10
var
x:integer;
begin
Readln(x);
If x>0 then Writeln('1');
If x<0 then Writeln('-1');
If x=0 then Writeln('0');
end.