Паскаль. Определить большее из 4 чисел введённых с клавиатуры с помощью подпрограммы. умоляю, очень надо!!!
Типо этого? var a,b,c,d:integer; begin readln(a,b,c,d); If (a>b) and (a>c) and (a>d) then writeln(a) else If (b>a) and (b>c) and (b>d) then writeln(b) else If (c>b) and (c>a) and (c>d) then writeln(c) else If (d>b) and (d>c) and (d>a) then writeln(d); end.
да, спасибо огромное
uses crt; var a,b,s,c,d:real; procedure maxim (x,y: real; var s:real); begin if xend; begin clrscr; writeln('Введите 4 числа'); read(a,b,c,d); maxim(a,b,s); maxim(c,s,s); maxim(d,s,s);} writeln('Максимальное число',s:3:2); readkey; end.
спасибо, правда, очень помогли)