Python
Вивести на екран перші N елементів геометричної прогресії за відомих b (перший член прогресії), q (знаменник прогресії).


b=int(input('a=?'))
q=int(input('d=?'))
N=int(input('N=?'))
L=[]
for i in range(N):
L.append(b)
b=b*q
print(L)
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.