Ответ:
import random
s = 0
while s < 100:
s += random.randint(1, 10)
print(s)
if s > 100:
print("Починаємо знову")
continue
elif s == 100:
print("Сотка випала")
break
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import random
s = 0
while s < 100:
s += random.randint(1, 10)
print(s)
if s > 100:
s = 0
print("Починаємо знову")
continue
elif s == 100:
print("Сотка випала")
break
Объяснение: