Ответ:
a = int(input("Введіть а"))
n = int(input("Введіть n"))
x = int(input("Введіть x"))
p = 1
for i in range(1,n+1):
p *= (a**i + i*x)
print("p = "+ str(p))
Результат:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a = int(input("Введіть а"))
n = int(input("Введіть n"))
x = int(input("Введіть x"))
p = 1
for i in range(1,n+1):
p *= (a**i + i*x)
print("p = "+ str(p))
Результат: