Составить блок схему vara,b,c:integer;beginreadln(a);readln(b);readln(c);if (a>b) and...

0 голосов
51 просмотров

Составить блок схему

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.


Информатика (263 баллов) | 51 просмотров
Дан 1 ответ
0 голосов
Правильный ответ

Смотри вложения

_______________


image
(3.1k баллов)