You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Escreva um programa que leia um número N inteiro qualquer e mostre na tela os N primeiros elementos de uma Sequência de Fibonacci. Exemplo: 0 – 1 – 1 – 2 – 3 – 5 – 8
print('SEQUÊNCIA DE FIBONACCI')
print('=-' * 30)
n = int(input('Quantos números da sequência de Fibonacci deseja visualizar? '))
a = 0
b = 1
count = 1
while count <= n:
a = a + b # ATULIZANDO O VALOR DE A DE ACORDO COM O VALOR DE B...
b = a - b # O NOVO VALOR DE B IRÁ ATUALIZAR O VALOR DE A NA CONTA ACIMA