program bolsheyechislo;
var a, b, c, d, e, max : integer;
function MaxChislo(x,y: integer): integer;
begin
if x > y
then MaxChislo := x
else MaxChislo := y;
end;
begin
writeln('Введите 5 чисел:');
readln(a, b, c, d, e);
max := MaxChislo(MaxChislo(MaxChislo(a,b),MaxChislo(c,d)),e);
writeln('Самое большое число: ', max );
end.
Пример:
Введите 5 чисел:
12 45 38 79 50
Самое большое число: 79