Введите три числа a, b, c. Найдите сумму двух наbбольших из них. Пример ввода: 6 4 9 Пример вывода: 15
Answers & Comments
444ерор444
Program z1; var a,b,c,d:integer; begin readln(a,b,c); if (a>b) and (c>b) then d:=(a+c); if (a>c) and (b>c) then d:=(a+b); if (c>a) and (b>a) then d:=(c+b); writeln(d); end.
Answers & Comments
var a,b,c,d:integer;
begin
readln(a,b,c);
if (a>b) and (c>b) then d:=(a+c);
if (a>c) and (b>c) then d:=(a+b);
if (c>a) and (b>a) then d:=(c+b);
writeln(d);
end.