
Gadwyn
5 год назад
скажите что не так в 8-й строчке " Нет перегруженной подпрограммы с таким количеством параметров max"var a, b, c, d, e, f: integer;function max (x, y: integer): integer;beginif x>y then max:=x else max:=y;end;beginreadln (a, b, c, d, e);f:= max(max(a, b), max(c, d),e);writeln ('f=', f);end.

ОТВЕТЫ

Велика
Oct 24, 2020
Надо записать
f:= max(max(max(a, b), max(c, d)),e);
f:= max(max(max(a, b), max(c, d)),e);
- я делала по книге
808
Смежные вопросы: