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

a=int(input('a=?'))
d=int(input('d=?'))
N=int(input('N=?'))
L=[]
for i in range(N):
L.append(a)
a=a+d
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.