Ответы
Ответ дал:
0
program z7;
var x,y:integer;
begin
readln(x,y);
if (x>0) and (y>0) then writeln('I')
else if (x>0) and (y<0) then writeln('IV')
else if (x<0) and (y>0) then writeln('II')
else if (x<0) and (y<0) then writeln('III');
end.
var x,y:integer;
begin
readln(x,y);
if (x>0) and (y>0) then writeln('I')
else if (x>0) and (y<0) then writeln('IV')
else if (x<0) and (y>0) then writeln('II')
else if (x<0) and (y<0) then writeln('III');
end.
Вас заинтересует
2 года назад
2 года назад
3 года назад
3 года назад
10 лет назад