Составить блок схему:var a,b,c:integer;Begin read(a,b,c); if (a>b) then a:=a else a:=b;...

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

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

var a,b,c:integer;
Begin
read(a,b,c);
if (a>b) then a:=a else a:=b;
if (a>c) then a:=a else a:=c;
writeln(a);
End.


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

A=a - это глупость.
if not(a>b) then a:=b; <-так правильнее.<br>


image
(667 баллов)