Ask a New Question
rem prints fibonacci series cls
rem prints fibonacci series
cls a=2 b=1 for p = 1 to 5 print a print b a=a + b b=b + a next p end I have done this program. How
3 answers
asked by
mark
652 views
Recall that the Fibonacci sequence {fn} is defined as follows: f1 = f2 = 1, and
Fn = fn−2 + fn−1, for n ≥ 3. to determine
3 answers
asked by
william
251 views
How to write an algorithm to find the fibonacci series ???
Help:/
1 answer
asked by
Nelly
937 views
I am doing a math project on Leonardo Fibonacci, the creator of the Fibonacci's Sequence. I was wondering if someone could
0 answers
asked by
trixie
774 views
construct flow chart for generating the nth fibonacci serious using two seed numbers read from the user input two seed number
4 answers
asked by
menebr
1,355 views
The Fibonacci sequence 1, 1, 2, 3, 5, 8, 13, 21, ... starts with two 1s, and each term afterwards is the sum of its two
1 answer
asked by
AMT
1,909 views
I have three problems to answer dealing with Fibonacci numbers. I understand the first two, but would like for reassurrance that
1 answer
asked by
Jennifer
712 views
Find three examples of the Fibonacci sequence in nature. Write a paragraph for each example. For each example, address the
4 answers
asked by
Anonymous
1,833 views
Vera orders some prints of photos that she uploaded to her computer. She orders 3 of the 5 x 7 prints for $0.89 each, 12 of the
1 answer
asked by
Ace
42 views
There is no function equation for the Fibonacci numbers, you have to use a Recursion formula.
F(n) = F(n-1) + F(n-2) for n>2 and
1 answer
asked by
Reiny
707 views