Ответы
Ответ дал:
0
//Pascal
var a, b, c: integer;
begin
read(a, b, c);
if (a >= b) and (a >= c) then write(a)
else if (b >= a) and (b >= c) then write(b)
else write(c);
end.
var a, b, c: integer;
begin
read(a, b, c);
if (a >= b) and (a >= c) then write(a)
else if (b >= a) and (b >= c) then write(b)
else write(c);
end.
Похожие вопросы
2 года назад
2 года назад
7 лет назад
7 лет назад
9 лет назад
9 лет назад
10 лет назад