rem prints fibonacci series cls

  1. rem prints fibonacci seriescls 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
    1. answers icon 3 answers
    2. mark asked by mark
    3. views icon 616 views
  2. Recall that the Fibonacci sequence {fn} is defined as follows: f1 = f2 = 1, andFn = fn−2 + fn−1, for n ≥ 3. to determine
    1. answers icon 3 answers
    2. william asked by william
    3. views icon 207 views
  3. How to write an algorithm to find the fibonacci series ???Help:/
    1. answers icon 1 answer
    2. Nelly asked by Nelly
    3. views icon 910 views
  4. I am doing a math project on Leonardo Fibonacci, the creator of the Fibonacci's Sequence. I was wondering if someone could
    1. answers icon 0 answers
    2. trixie asked by trixie
    3. views icon 737 views
  5. construct flow chart for generating the nth fibonacci serious using two seed numbers read from the user input two seed number
    1. answers icon 4 answers
    2. menebr asked by menebr
    3. views icon 1,304 views
  6. 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. answers icon 1 answer
    2. AMT asked by AMT
    3. views icon 1,852 views
  7. I have three problems to answer dealing with Fibonacci numbers. I understand the first two, but would like for reassurrance that
    1. answers icon 1 answer
    2. Jennifer asked by Jennifer
    3. views icon 678 views
  8. Find three examples of the Fibonacci sequence in nature. Write a paragraph for each example. For each example, address the
    1. answers icon 4 answers
    2. Anonymous asked by Anonymous
    3. views icon 1,784 views
  9. 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. answers icon 1 answer
    2. Ace asked by Ace
    3. views icon 22 views
  10. 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. answers icon 1 answer
    2. Reiny asked by Reiny
    3. views icon 657 views