Составить блок схему vara,b,c:integer;beginreadln(a);readln(b);readln(c);if (a больше b) and (a больше c) thenwriteln('naibolshee a=', a)else if (b больше a) and (b больше c) thenwriteln('naibolshee b=', b)else if (c бол...
Составить блок схему var
a,b,c:integer;
begin
readln(a);
readln(b);
readln(c);
if (a>b) and (a>c) then
writeln('naibolshee a=', a)
else if (b>a) and (b>c) then
writeln('naibolshee b=', b)
else if (c>a) and (c>b) then
writeln('naibolshee c=', c)
else
writeln('naibolshego net');
end.
Ответ(ы) на вопрос:
Не нашли ответ?
Похожие вопросы