Программирование алгоритмов ветвления. Урок 2 Сопоставь код с его результатом: Количество соединений: 4 price = 50 O if price > 100: print("price is greater than 100") elif price == 100: print("price is 100") else price < 100: print("price is less than 100") price is 100 price = 50 if price > 100: print("price is greater than 100") elif price == 100: : print("price is 100") else: a O price is less than 100 print("price is less than 100") price = 100 = if price > 100: print("price is greater than 100") elif price == 100: print("price is 100") elif price < 100: print("price is less than 100") price = 50 elif price == 100: IdentationError: unindent does not match any outer indentation level if price >= 100: print("price is greater than 100") else: print("price is less than 100")
Приложения:
Ответы
Ответ дал:
15
Объяснение:
Вот, проверенно в оноайн мектепе
Приложения:
gooledofil:
спс
Кто не понял 1-3 2-2 3-1 4-2
спс огромное
Вас заинтересует
2 года назад
2 года назад
2 года назад
8 лет назад
9 лет назад
9 лет назад