uaveiro-leci/1ano/fp/aula04/sequenceUn.py

11 lines
319 B
Python
Raw Normal View History

2022-10-14 22:03:25 +00:00
# This program generates 20 terms of a sequence by a recurrence relation.
Un = 100 # Un = each term of the sequence. Initially = U0
c = 0
while Un > 0:
print(round(Un, 4))
Un = 1.01*Un - 1.01 # Set Un to the next term of the sequence
c += 1
print('O programa mostrou ', c, ' termos')