Найти сумму большего и меньшего из трех чисел на алгоритмическом языке

Leonid02super Leonid02super    3   20.09.2019 12:00    0

Ответы
terylevina1 terylevina1  04.08.2020 12:36
Var a,b,c,max,min:integer;
 begin
    read(a,b,c);
    max:=c;
    min:=c;
    if min>a then min:=a else if min>b then min:=b;
    if max<a then max:=a else if max<b then max:=b;
    write(min,max);
 end.
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика