Write a program to print all the positive numbers in the Fibonacci series in reverse order such that the last two numbers in the series are 207 and 335 respectively.
Answers
Answered by
0
Answer:
okh so i will write my code in python okay, you can apply the logic in any language u want to
a = 207
b = 335
print(a)
print(b)
while a>=0:
c = b-a
print(c)
a = c
b = a
Similar questions