Ответ:
Отметь как лучший ответ! заранее спасибо
Объяснение:
вводим 3 числа через Enter. На выходе минимальное число
a, b, c = int(input()), int(input()), int(input())
if a < b:
print(a) if a < c else print(c)
else:
print(b) if b < c else print(c)
Відповідь:
Пояснення:
a = int(input())
b = int(input())
c = int(input())
if a < c:
print('min = ',a)
print('min = ',c)
elif b < c:
print('min = ',b)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Отметь как лучший ответ! заранее спасибо
Объяснение:
вводим 3 числа через Enter. На выходе минимальное число
a, b, c = int(input()), int(input()), int(input())
if a < b:
print(a) if a < c else print(c)
else:
print(b) if b < c else print(c)
Відповідь:
Пояснення:
a = int(input())
b = int(input())
c = int(input())
if a < b:
if a < c:
print('min = ',a)
else:
print('min = ',c)
elif b < c:
print('min = ',b)
else:
print('min = ',c)