Первое третье и последние
Скачай программу PascalABC. На нем ты и сможешь написать программы на языке Pascal.
Program abc;
var a,b,c:integer;
begin
writeln('Введите первую сторону');
read(a);
writeln('Введите вторую сторону');
read(b);
writeln('Введите третью сторону');
if (a>b) and (a>c) then write(a);
if (b>a) and (b>c) then write(b);
if (c>a) and (c>b) then write(c);
if (a=b) or (a=c) or (c=b) then write('Есть равные стороны и нет большей')
end.
Код (python 3.5):
n = int(input())
temp = input().split()
winner, maxtrees, minkicks = temp[0], int(temp[1]), int(temp[2])
for _ in range(n - 1):
temp = input().split()
contender, trees, kicks = temp[0], int(temp[1]), int(temp[2])
if trees > maxtrees or trees == maxtrees and kicks < minkicks:
winner, maxtrees, minkicks = contender, trees, kicks
print(winner)
Пример ввода:
4
Lennon 17 61
McCartney 17 58
Starr 18 74
Harrison 18 90
Пример вывода:
Starr
B) output the contents of the curent directory.........