Предмет: Информатика, автор: sajhanovadiana99

помогите пожалуйста ​

Приложения:

orakul96: язык программирования?

Ответы

Автор ответа: torvel
0

Відповідь:

n = []

for i in range(3):

   a = int(input("Input - "))

   n.append(a)

print(max(n))

Пояснення:

Автор ответа: knodr75
0

Ответ:

Код написан на python

Первый вариант:

a = int(input())

b = int(input())

c = int(input())

max_number = [a, b, c]

print(max(max_number))

Второй вариант:

a = int(input())

b = int(input())

c = int(input())

if a > b and a > c:

   print(a)

elif b > a and b > c:

   print(b)

elif c > a and c > b:

   print(c)

Похожие вопросы