Відповідь:
Пояснення:
Произведение через цилк for:
total = 1
for i in range (10,21):
total = total * i
print(total)
Произведение через цилк while
n = 10
while n<=20:
total = total*n
n = n + 1
Відповідь:
Пояснення:
Произведение через цилк for:
total = 1
for i in range (10,21):
total = total * i
print(total)
Произведение через цилк while
total = 1
n = 10
while n<=20:
total = total*n
n = n + 1
print(total)