Posts by Hick Nax • 1 point
1 post
-
-2
votes6
answers4819
viewsA: Fibonacci-Python
x = input(int("Digite um inteiro positivo")) a = 1; b = i = 0 print(f"Estes são os primeiros {x} termos da série de Fibonacci:") print('\u26C4'*10) while i < x: c = a + b a = b b = c i += 1…