Ответ:
x =int(input("Введіть кількість кубиків"))
count = 1
high = 0
while x >= count: x-=count high += 1 count +=1
print("Висота:", high, " рядів")print("Залишок:", x, " кубиків")
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
x =int(input("Введіть кількість кубиків"))
count = 1
high = 0
while x >= count:
x-=count
high += 1
count +=1
print("Висота:", high, " рядів")
print("Залишок:", x, " кубиків")
Объяснение: